-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (69 loc) · 1.11 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
body {
background: #636e72;
}
#main {
width: 245px;
height: 300px;
margin: 0 auto;
margin-top:20vh;
}
#result {
background: #2c3e50;
width: 100%;
height: 60px;
overflow: hidden;
}
#resultInner {
display: block;
background: #fff;
width: 225px;
height: 40px;
margin: 10px;
color: #000;
font-size:30px;
}
#numbers {
background: #bdc3c7;
width: 185px;
height: 235px;
float: left;
}
#numbers .num {
width: 50px;
height: 50px;
font-weight: bolder;
margin: 4px;
}
#operators {
background: #95a5a6;
width: 60px;
height: 235px;
float: right
}
#operators .operator {
width: 50px;
height: 50px;
font-weight: bolder;
margin: 4px;
}
#resultOperators {
background: #7f8c8d;
}
#resultOperators .resultOperator {
width: 50px;
height: 50px;
font-weight: bolder;
margin: 4px;
}
.clear {
clear: both;
}
#equation {
width: 173px !important;
}
h1{
font-weight: bolder;
font-family: sans-serif;
font-size:1.9rem;
color:#FFD365;
}