-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
80 lines (73 loc) · 1.62 KB
/
main.css
File metadata and controls
80 lines (73 loc) · 1.62 KB
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, div, a {
padding:0;
margin:100px;
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
}
#calculator {
background-color: #5d86bb;
width: 310px;
height: 580px;
border: 3px #264d73 solid;
margin: 10px auto;
padding: 5px;
border-radius: 10px;
box-shadow: inset 0px -2px 10px
}
header {
text-align: center;
color: #e0e0eb;
padding: none;
margin: none;
font-family: 'Segoe Print' ;
}
.red {
background-color: red;
}
#total {
height: 70px;
width: 95%;
margin:auto;
background-color: #dbe4f0;
margin-bottom: 10px;
text-align: right;
font-size: 60px;
padding: 0 5px;
border-radius: 10px;
}
#numbers, #operators {
margin: auto;
}
#operators a {
display: block;
width: 45px;
height: 45px;
float: left;
text-decoration: none;
color: black;
text-align: center;
font-size: 39px;
padding: 2px;
margin: 5px 6px;
margin-bottom: 10px;
margin-top: 10px;
background: -webkit-gradient(linear, left top, left bottom, from(#EDEDED), to(#DCDCDC));
background: -moz-linear-gradient(top, #EDEDED, #DCDCDC);
border-radius: 10px;
box-shadow: inset 0px -2px 10px
}
#numbers a {
display: block;
width: 50px;
height: 50px;
float: left;
text-decoration: none;
color: black;
text-align: center;
font-size: 32pt;
padding: 10px;
margin: 5px 15px;
background: -webkit-gradient(linear, left top, left bottom, from(#EDEDED), to(#DCDCDC));
background: -moz-linear-gradient(top, #EDEDED, #DCDCDC);
border-radius: 10px;
box-shadow: inset 0px -2px 10px
}