-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (45 loc) · 977 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
/* Written by Asutosh Variar, 2021 */
/* Everything other than the calculator div itself will be colored black */
body {
background-color:black;
/* */
font-family: Arial;
font-style: bold;
}
/* The calculator div itself will be the only visible object */
#calc{
background-color: white;
/* Curves borders */
border-radius: 25px;
width: 520px;
/* Centers the calculator */
margin: 0 auto;
/* Decreases distance between each br */
line-height: 10px;
}
h1{
color:grey;
/* Sets font to client-requested style */
font-family: Verdana, Geneva, Tahoma, sans-serif;
padding-top: 50px;
padding-left: 15px;
}
/* # used to signify selection by ID */
#principal{
margin-left: 50px;
}
#rate{
margin-left: 12px;
}
#numList{
margin-left: 18px;
}
/* . used to signify selection by class */
.text {
margin-left: 100px;
}
button {
margin-left: 100px;
margin-top: 10px;
margin-bottom: 11px;
}