-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
77 lines (70 loc) · 1.36 KB
/
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
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
body{
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
background-color:seagreen;
color:oldlace;
}
table{
padding: 1%;
color:sienna;
font-size: medium;
}
p{
font-size: medium;
}
input{
font-size: medium;
padding: 5px;
margin-left:10px;
border: solid 5%;
border-style: solid;
border-radius: 10px;
border-color: sienna;
background-color:oldlace;
}
.title{
padding: 2%;
text-align: center;
}
.adj-calc-div{
padding: 2%;
width: auto;
text-align: center;
max-width: 90%;
position: relative;
display: block;
margin-left: auto;
margin-right: auto;
background-color:oldlace;
}
.result{
position:relative;
width: auto;
padding: 3%;
width: 50%;
margin-left: auto;
margin-right: auto;
display: block;
background-color: sienna;
color: oldlace;
text-align: center;
}
.button{
position: relative;
padding: 2%;
background-color:seagreen;
color:oldlace;
border-style: solid;
border-color: seagreen;
border-radius: 10px;
font-size: medium;
}
.button:hover{
position: relative;
padding: 2%;
background-color: sienna;
color:oldlace;
border-style: solid;
border-color: sienna;
border-radius: 10px;
font-size:medium;
}