-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (83 loc) · 1.38 KB
/
style.css
File metadata and controls
97 lines (83 loc) · 1.38 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
* {
box-sizing: border-box;
}
a {
color: #292424;
text-decoration: none;
}
a:visited {
color: #242529;
text-decoration: none;
}
a:hover {
color: #2110e2;
}
body {
background-image: linear-gradient(to right, #73cee6, #33778a);
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.calculator {
position: fixed;
top: 20%;
left: 50%;
width: 520px;
height: 800px;
margin-top: -9em;
margin-left: -17em;
}
.numeric {
width: 125px;
height: 125px;
display: inline-block;
background: #191a1c;
color: #969ea5;
font-size: 40px;
text-align: center;
vertical-align: middle !important;
margin-left: -5px;
padding-top: 40px;
cursor: pointer;
}
.numeric:active {
background: #f0f0f5 !important;
color: #191a1c !important;
}
.zero {
width: 250px !important;
}
.action {
background: #292424;
}
.result {
background: #c5c5c5 !important;
}
.visor {
width: 500px;
height: 220px;
margin-left: -5px;
background: #f6f7fa;
}
.total {
color: #292424;
width: 500px;
font-size: 70px;
text-align: right;
padding-right: 10px;
}
.acc {
color: #c5c5c5;
width: 500px;
font-size: 30px;
text-align: right;
padding-right: 10px;
padding-top: 5px;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
color: white;
text-align: center;
height: 40px;
}