-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (60 loc) · 1022 Bytes
/
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
.js #fouc {
display: none;
}
body {
/* background-color: hsl(46,85%,92%); */
}
#container {
width: 100%;
height: 100%;
font-family: arial, sans-serif;
font-size: 2em;
color: darkblue;
}
#calculator {
margin: 100px auto;
background-color: darkblue;
width: 400px;
height: 500px;
border-radius: 20px;
border: 6px solid rgb(50,100,140);
border-style: inset;
box-shadow: 5px 10px 25px 5px gray;
text-align: center;
}
#screen {
width: 86%;
height: 20%;
background-color: lightgray;
display: inline-block;
margin-top: 20px;
border-radius: 20px;
}
.display {
font-size: 1.4em;
float: right;
margin: 20px;
}
#buttons {
display: inline-block;
width: 83%;
height: 60%;
margin-top: 20px;
}
.button {
width: 70px;
height: 70px;
background-color: lightblue;
float: left;
display: inline-block;
margin: 6px;
border-radius: 20px;
}
.button:hover {
background-color: rgb(100, 180, 230);
}
.symbol {
height: 100%;
box-sizing: border-box;
margin: 25%;
}