-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
129 lines (107 loc) · 1.59 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
117
118
119
120
121
122
123
124
125
@font-face{
font-family: bitwise;
src: url('./fonts/bitwise.ttf');
}
html,
body{
width: 100%;
color:#fff;
background-color: #333;
font-family: bitwise, serif;
}
a{
color:#2fa83b;
font-style: none;
}
a:hover,a:visited{
color:#2fa83b;
font-style: none;
text-decoration:none;
}
.pencil{
position: absolute;
width: 5rem;
top: 15rem;
left:7.75rem;
transform: rotate(125deg);
filter: grayscale(67.5%);
z-index: 2;
}
.coffee{
position: absolute;
width: 10rem;
top: 10rem;
left: 70rem;
filter: grayscale(50%);
}
.paper{
filter: grayscale(100%);
position: absolute;
z-index: 1;
width: 10rem;
left: 1.875rem;
height: 17.5rem;
}
.fcc{
display: inline;
color:#2fa83b;
}
.calcText{
text-align: center;
}
.result{
text-align: center;
background-color: #fff;
color:#000;
padding: 0;
margin-bottom: 2rem;
margin-top: 0;
}
.container{
box-shadow: 5px 10px 18px #444;
background-color: #555;
margin-top: 16rem;
width: 30rem;
margin-bottom: 2rem;
box-shadow:
}
.col-sm-3 button{
min-width: 50%;
margin: 0.5rem;
}
.number,.operator{
background-color: inherit;
border: none;
}
.equals{
background-color: inherit;
border: none;
padding: 0;
margin:0;
}
.number:hover{
background-color: #eaff35;
color:#000;
font-weight: bold;
}
.operator:hover{
background-color: #42f477;
color:#000;
font-weight: bold;
}
.equals:hover{
background-color: #f44162;
color:#000;
font-weight: bold;
}
.col-sm-6 button{
background-color: #555;
color: #000;
border: none;
font-weight: bold;
text-align: center;
min-width: 100%;
}
.col-sm-6 button:hover{
background-color: #3f7bdb;
}