-
Notifications
You must be signed in to change notification settings - Fork 12
/
styleview.css
108 lines (75 loc) · 1.28 KB
/
styleview.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
@import url('https://fonts.googleapis.com/css?family=Lobster');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');
body{
margin: 0px;
}
header{
background: black;
color: white;
padding: 8px 20px 6px 40px;
height: 50px;
}
header h1{
display: inline;
font-family: 'Lobster', cursive;
font-weight: 400;
font-size: 32px;
float: left;
margin-top: 0px;
margin-right: 10px;
}
nav ul {
display: inline;
padding: 0px;
float: right;
}
nav ul li{
display: inline-block;
list-style-type: none;
color: white;
float: left;
margin-left: 12px;
}
nav ul li a{
color: white;
text-decoration: none;
}
nav ul ul{
display: none;
position: absolute;
}
#navli ul li ul:hovar{
visibility: visible;
display: block;
}
#navli{
font-family: 'Montserrat', sans-serif;
}
.homered{
background-color: red;
padding: 30px 10px 22px 10px;
}
.divider{
background-color: red;
height: 5px;
}
.homeblack:hover{
background-color: blue;
padding: 30px 10px 21px 10px;
}
table {
margin: 0px;
border-collapse: collapse;
width: 100%;
font-family: 'Montserrat', sans-serif;
}
th, td {
text-align: center;
padding: 8px;
}
tr:nth-child(even){background-color: #f2f2f2}
tr:hover {background-color:#76D7C4;}
th {
background-color: #4CAF50;
color: white;
}