-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
116 lines (102 loc) · 2.06 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
body {
text-align: center;
}
#frame {
display: inline-block;
background-color: #1C262F;
margin-top: 15px;
border-radius: 15px;
box-shadow: 3px 3px 5px black;
box-shadow: inset 0px 0px 8px white;
padding: 30px 30px;
}
#frame-top {
display: inline-block;
background-color: #EBE7E6;
height: 180px;
width: 300px;
box-shadow: inset 0px 0px 3px black;
font-family: 'Cinzel', serif;
font-size: 13px;
}
#frame-top h1 {
display: inline-block;
font-family: 'Oswald', sans-serif;
font-weight: 200;
font-size: 30px;
margin: 20px 0px 0px 0px;
}
#frame-top h1 span{
font-weight: 700;
}
#screen {
display: inline-block;
background-color: #64786C;
height: 80px;
width: 250px;
margin: 10px auto;
box-shadow: inset 0px 0px 7px black;
}
#screen p {
font-family: 'Rationale', sans-serif;
font-size: 30px;
margin: 3px 10px;
text-align: right;
}
#advanced-buttons {
display: block;
margin-top: 15px;
}
.advanced {
background-color: hsl(223, 28%, 8%);
color: white;
font-family: 'Oswald', sans-serif;
font-weight: 400;
font-size: 16px;
border-radius: 4px;
border: 0px solid black;
box-shadow: 2px 2px 0px hsl(223, 28%, 4%);
width: 50px;
height: 25px;
padding: 0px;
margin: 3px 3px;
}
#digit-buttons .advanced {
margin: 3px 3px 15px 3px;
}
#digit-buttons {
display: inline-block;
width: 180px;
margin-top: 6px;
}
.digits {
background-color: #e3e6e8;
color: black;
border-radius: 6px;
border: 0px;
margin: 3px 3px;
box-shadow: 2px 2px 0px #abb4ba;
font-family: 'Ubuntu', sans-serif;
font-size: 22px;
width: 50px;
height: 40px;
}
#zero {
width: 109px;
}
#operator-buttons {
display: inline-block;
width: 60px;
}
.operators {
background-color: #536693;
color: white;
border-radius: 6px;
border: 0px;
margin: 3px 3px;
box-shadow: 2px 2px 0px #374462;
font-family: 'Ubuntu', sans-serif;
font-size: 22px;
width: 50px;
height: 40px;
}