-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (81 loc) · 1.21 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
*{
box-sizing: border-box;
padding: 0;
margin: 0;
}
html, body {
height: 100vh;
}
body {
font-family:
ui-sans-serif,
system-ui,
-system-ui,
-apple-system,
BlinkMacSystemFont,
Roboto, Helvetica, Arial,
sans-serif,
"Apple Color Emoji";
font-size: 14pt;
background: lightblue;
}
.del {
color: red;
}
#answer {
font-size: 144pt;
font-weight: 700;
}
#equals {
font-size: 72pt;
font-weight: 700;
}
#times {
font-size: 72pt;
font-weight: 700;
margin-left: 20px;
margin-right: 20px;
}
.hidden {
visibility: hidden;
}
header {
padding: 30px;
display: grid;
grid-template-columns: 150px auto;
background-color: white;
}
.equation {
display: grid;
grid-template-columns: 200px 80px 200px 160px 200px;
}
.equation > div {
font-size: 72pt;
font-weight: 700;
margin: 10px;
text-align: center;
}
.stats-label {
font-weight: 600;
}
main {
display: flex;
flex-direction: column;
align-items: center;
}
footer {
display: flex;
flex-direction: column;
align-items: center;
}
.factors {
display: flex;
flex-direction: row;
}
.factor-container {
display: grid;
grid-template-columns: auto auto auto;
}
button {
font-size: 24pt;
}