forked from mouri11/JSCalc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
47 lines (40 loc) · 990 Bytes
/
styles.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
body {
background-color: #00aaff;
font-family: 'Roboto', sans-serif
}
#calculator-body {
background-color: white;
margin-top: 9%;
border-style: solid;
border-radius: 10px;
border-color: transparent;
box-shadow: 0 0 0 1px #ebebeb inset, 0 0 0 3px rgba(255,255,255,0.15) inset, 0 8px 0 0 #adadad, 0 8px 0 3px rgba(0,0,0,0.4), 0 8px 8px 3px rgba(0,0,0,0.5);
padding-top: 15px;
padding-bottom: 15px;
}
#buttons {
margin-top: 2.5%;
display: inline-block;
box-sizing: border-box;
}
#screen {
background-color: #dce5ed;
text-align: right;
border-style: solid;
border-color: transparent;
border-radius: 10px;
font-family: 'Orbitron', sans-serif
}
#answer{
font-size: 37.5px;
}
.btn {
box-shadow: 0 0 0 1px #ebebeb inset, 0 0 0 2px rgba(255,255,255,0.15) inset, 0 5px 0 0 #adadad, 0 5px 0 1px rgba(0,0,0,0.4), 0 5px 5px 1px rgba(0,0,0,0.5);
margin:6px auto 6px auto;
}
a {
color: black;
}
a:hover{
text-decoration: none;
}