-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle_calculator.css
59 lines (46 loc) · 964 Bytes
/
style_calculator.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
body{
background-color: white;
text-align: center;
justify-items: center;
align-items: center;
padding: 10px;
border: none;
margin: none;
}
form{
text-align: center;
justify-items: center;
align-items: center;
padding: 10px;
border: none;
margin: none;
}
table{
text-align: center;
justify-items: center;
align-items: center;
padding: 10px;
background-color: rgb(26, 18, 71);
margin-top: 12%;
border-radius: 3px;
}
tr,td{
background-color: grey;
padding: none;
}
input{
padding: 5px 7px;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
#display{
background-color: rgba(255, 255, 255, 0.753);
}
.operator{
padding: 5px 7px;
}
.equalto{
background-color: rgb(51, 148, 192);
}
#clear{
padding: 5px 7px;
}