-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
50 lines (46 loc) · 985 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
48
49
50
#calcBody {
background-image: linear-gradient(90deg, #BEBEBE, #D3D3D3);
padding: 15px;
width: fit-content;
font-family: monospace;
}
div.numbers {
margin-bottom: 10px;
}
div.window {
width: 230px;
height: 40px;
background-image: linear-gradient(#FFFFFF 50%, #E8E8E8 50%);
margin-bottom: 10px;
border-radius: 3px;
box-shadow: inset 0px 0px 10px 0px black;
}
div.window #screen {
padding-right: 10px;
text-align: right;
font-size: 30px;
overflow-x: auto;
}
div button {
text-align: center;
font-family: monospace;
font-size: 30px;
width: 50px;
height: 50px;
margin: 0;
background-image: linear-gradient(#EBEBEB 50%, #DCDCDC 50%);
border-radius: 5px;
margin-right: 10px;
}
div .numbers {
font-size: 0;
}
div .operator {
background-image: linear-gradient(#434343 50%, #2E2E2E 50%);
color: white;
}
div #clear {
background-image: linear-gradient(#D20100 50%, #AF0100 50%);
color: white;
}
/*# sourceMappingURL=styles.css.map */