-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
60 lines (52 loc) · 912 Bytes
/
index.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
.card {
display: inline-block;
width: 100px;
height: 100px;
font-size: 50px;
padding: 15px;
text-align: center;
vertical-align: center;
margin: 10px;
border: 1px solid black;
}
#main {
display: inline-block;
}
#operators {
display: inline-block;
vertical-align: top;
}
#operators .card {
display: block;
vertical-align: middle;
height: 77px;
width: 77px;
padding: 10px;
margin: 10px;
}
#input {
display: block;
margin-top: 50px;
font-size: 50px;
border-top: none;
border-left: none;
border-right: none;
border-bottom: 2px solid black;
}
#dashboard {
display: inline-block;
}
#timer {
display: inline-block;
vertical-align: top;
margin-left: 50px;
font-size: 70px;
}
#title {
margin-left: 10px;
font-size: 80px;
font-weight: bold;
}
#result {
vertical-align: bottom;
}