-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcal.css
144 lines (129 loc) · 3.04 KB
/
cal.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
body {
background: #0F2027;
background: -webkit-linear-gradient(to bottom, #2C5364, #203A43, #0F2027);
background: linear-gradient(to bottom, #2C5364, #203A43, #0F2027);
align-content: center;
font-family: 'Open Sans', sans-serif;
color: white;
text-transform: uppercase;
}
.container {
padding-top: 50px;
align-items: center;
justify-content: center;
height: 100vh;
}
#container {
width: 300px;
padding: 8px 8px 20px 8px;
margin: 20px auto;
background: #F2994A;
background: -webkit-linear-gradient(to right, #F2C94C, #F2994A);
background: linear-gradient(to right, #F2C94C, #F2994A);
border-radius: 5px;
border-top: 2px solid #F2994A;
border-right: 2px solid #F2994A;
border-bottom: 2px solid #F2994A;
border-left: 2px solid #F2994A;
box-shadow: 20px 20px 90px black;
}
#display {
font-family: 'Open Sans', sans-serif;
display: block;
margin: 15px auto;
height: 42px;
width: 174px;
padding: 0 10px;
border-radius: 4px;
border-top: 2px solid #FFF;
border-right: 2px solid #FFF;
border-bottom: 2px solid #FFF;
border-left: 2px solid #FFF;
background-color: #FFF;
font-size: 22px;
color: #666;
text-align: right;
font-weight: 400;
}
.button {
display: inline-block;
margin-left: 25px;
margin-right: 10px;
width: 42px;
height: 42px;
font-size: 20px;
border-radius: 30px;
box-shadow: 1px 1px 2px #203A43;
}
.mathButtonslast{
margin: -40px 2px 2px 10px;
color: white;
background-color: #373737;
border-top: 2px solid white;
border-right: 2px solid white;
border-bottom: 2px solid white;
border-left: 2px solid white;
box-shadow: 1px 1px 4px #373737;
}
.mathButtonslast:hover{
box-shadow: 1px 1px 7px #373737;
}
.mathButtonsecondlast{
margin: 2px 2px 2px 25px;
color: white;
background-color: #373737;
border-top: 2px solid white;
border-right: 2px solid white;
border-bottom: 2px solid white;
border-left: 2px solid white;
box-shadow: 1px 1px 4px #373737;
}
.mathButtonsecondlast:hover{
box-shadow: 1px 1px 7px #373737;
}
.mathButtons {
margin: 2px 2px 2px 2px;
color: white;
background-color: #373737;
border-top: 2px solid white;
border-right: 2px solid white;
border-bottom: 2px solid white;
border-left: 2px solid white;
box-shadow: 1px 1px 4px #373737;
}
.mathButtons:hover{
box-shadow: 1px 1px 7px #373737;
}
.digits {
color: #203A43;
background-color: #EBEBEB;
border-top: 1px solid white;
border-right: 1px solid white;
border-bottom: 1px solid white;
border-left: 1px solid white;
border-radius: 2px;
box-shadow: 1px 1px 1px #203A43;
font-family: 'Open Sans', sans-serif;
}
.digits:hover{
color: white;
background-color: #373737;
box-shadow: 0px 1px 1px #203A43;
border-top: 1px solid #373737;
border-right: 1px solid #373737;
border-bottom: 1px solid #373737;
border-left: 1px solid #373737;
}
#clearButton:hover{
box-shadow: 1px 1px 3px #373737;
}
#clearButton {
border-radius: 2px;
color: white;
background: #373737;
border-top: 2px solid #373737;
border-right: 2px solid #373737;
border-bottom: 2px solid #373737;
border-left: 2px solid #373737;
box-shadow: 1px 1px 1px #373737;
}