-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
125 lines (113 loc) · 2.09 KB
/
styles.css
File metadata and controls
125 lines (113 loc) · 2.09 KB
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
html {
background: #000000;
background-image:
radial-gradient(50% 30% ellipse at center top, #000000 0%, rgba(0,0,0,0) 100%),
radial-gradient(60% 50% ellipse at center bottom, #000000 0%, #000000 100%);
background-attachment: fixed;
}
body {
font: 300 18px/1.6 "Source Sans Pro",sans-serif;
margin: 0;
padding: 5em 0 2em;
text-align: center;
}
#divide:focus, #times:focus, #minus:focus, #plus:focus{
background: #fafaf5;
color: orange;
transition: all 0.6s;
}
#clear:hover, #negative:hover, #percentage:hover, #plus:focus{
background: #ebebeb;
transition: all 0.4s;
}
.calculator {
font-size: 28px;
margin: 0 auto;
width: 10em;
}
.firstElement, .secondElement{
color: #ffffff;
line-height: 3em;
}
.number-zero {
border: 0;
background: rgb(46, 43, 43);
color: #fcfcfc;
cursor: pointer;
float: left;
font: inherit;
margin: 0.25em;
width: 4.5em;
height: 2em;
border-radius: 15px;
text-align: left;
transition: background-color 0.2s;
}
.clear {
border: 0;
background: rgb(179, 178, 176);
color: #000000;
cursor: pointer;
float: left;
font: inherit;
margin: 0.25em;
width: 2em;
height: 2em;
transition: all 0.5s;
border-radius: 100%;
}
.number-zero hover{
opacity: 10;
}
.number {
border: 0;
background: rgb(46, 43, 43);
color: #fcfcfc;
cursor: pointer;
float: left;
font: inherit;
margin: 0.25em;
width: 2em;
height: 2em;
transition: all 0.5s;
border-radius: 100%;
}
.ops {
border: 0;
background: rgb(255, 146, 4);
color: #fcfcfc;
cursor: pointer;
float: left;
font: inherit;
margin: 0.25em;
width: 2em;
height: 2em;
transition: all 0.5s;
border-radius: 100%;
}
.equals {
border: 0;
background: rgb(255, 146, 4);
color: #fcfcfc;
cursor: pointer;
float: left;
font: inherit;
margin: 0.25em;
width: 2em;
height: 2em;
transition: all 0.5s;
border-radius: 100%;
}
.test {
border: 0;
background: rgb(179, 178, 176);
color: #000000;
cursor: pointer;
float: left;
font: inherit;
margin: 0.25em;
width: 2em;
height: 2em;
transition: all 0.5s;
border-radius: 100%;
}