-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (61 loc) · 1.05 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
@import url('https://fonts.googleapis.com/css?family=VT323');
html {
background-color: rgb(60, 60, 65);
height: 100%;
}
#title {
text-align: center;
font-size: 100px;
margin: 20px;
font-family: 'VT323', monospace;
color: #fff;
}
.container {
height: 550px;
margin: 5% auto;
position: relative;
width: 680px;
background-color: #333;
margin-bottom: 0;
}
.result {
background-color: #575757;
height: 20%;
}
.calc-body #number-1,
#number-2 {
width: 200px;
height: 66px;
padding: 50px;
text-align: center;
font-size: 50px;
}
.calc-body {
width: 90%;
margin: auto;
margin-top: 20px;
}
.calc-body #multiply,
#division,
#subtract,
#sum {
margin: 4%;
margin-top: 50px;
font-size: 90px;
width: 100px;
height: 100px;
}
#multiply:hover,
#division:hover,
#subtract:hover,
#sum:hover {
border-radius: 20%;
transition: all 0.5s;
background-color: #9c9da0;
}
#show {
text-align: center;
font-size: 95px;
font-family: sans-serif;
color: white;
}