-
Notifications
You must be signed in to change notification settings - Fork 0
/
taxCalc.css
63 lines (63 loc) · 1.32 KB
/
taxCalc.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
html, body{
height: 98%;
}
header{
background-color: rgba(66, 167, 66, 0.897);
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
text-align: center;
}
footer{
background-color: rgba(66, 167, 66, 0.897);
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: smaller;
}
main{
flex-grow: 1;
}
.flexpage{
display: flex;
flex-direction: column;
min-height: 98vh;
}
#navbar{
display: flex;
justify-content: space-between;
padding-left: 0;
}
#flexdiv{
display: flex;
justify-content: center;
}
.navbar_li{
list-style-type: none;
width: 100%;
text-align: center;
background-color: forestgreen;
}
.navbar_a{
text-decoration: none;
color: black;
}
.navbar_li:hover{
background-color:green;
transition-delay: 50ms;
cursor: pointer;
}
.navbar_li:hover .navbar_a{
text-decoration: none;
color: white;
transition-delay: 50ms;
}
td,th{
border: 1px solid black;
margin: 0%;
}
img{
height: 75px;
padding: 10px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}