-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.css
112 lines (100 loc) · 2.26 KB
/
site.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
100
101
102
103
104
105
106
107
108
109
110
111
112
body {
background-image: url("WillIcon1.png");
background-position: center;
background-attachment: fixed;
background-size: cover;
}
.header {
font-family:"Arial Black", Gadget, sans-serif;
text-align: center;
background-image: url("WebTop.png");
background-position: bottom;
background-size: cover;
box-shadow: 8px 8px 8px -2px gray;
position: relative;
overflow: visible;
padding-top: 4rem;
padding-bottom: 5rem; }
.header .headline {
color: white; }
.header-subnav {
float: none;
position: absolute;
text-align: center;
margin: 0 auto;
bottom: 0;
width: 100%; }
.header-subnav li {
float: none;
display: inline-block; }
.header-subnav li a {
padding: 0.9rem 1rem;
font-size: 0.75rem;
color: white;
display: block;
font-weight: bold;
text-transform: uppercase;
font-size: 15px;
letter-spacing: 1px;
transition: all 0.35s ease-in-out; }
.header-subnav li a.is-active {
background: rgba(250, 0, 0, 0.8); }
.header-subnav li a:hover {
background: rgba(250, 0, 0, 1);
transition: all 0.35s ease-in-out; }
.subheader {
display: inline;
text-align: center;
color: red;
padding: 10px 100px;
}
.col-md-3 {
padding: 5px;
border-radius: 15px;
background-color: #B8B8B8;
border-style: solid;
border-color: red;
text-align: center;
font-family:"Arial Black", Gadget, sans-serif;
}
.col-md-6 {
padding: 5px;
border-radius: 15px;
background-color: #B8B8B8;
border-style: solid;
border-color: black;
text-align: center;
font-family:"Arial Black", Gadget, sans-serif;
}
.dropbtn {
background-color: #4CAF50;
color: white;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {background-color: #f1f1f1}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown:hover .dropbtn {
background-color: #3e8e41;
}