-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (91 loc) · 1.71 KB
/
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
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
body {
background: url('./images/adventure-alps-camp-camping-618848.jpg') no-repeat;
background-size: cover;
margin: 0;
background-color: gray
}
/* Nav Bar Effects */
nav {
display: flex;
justify-content: flex-end;
}
.nav-bar {
display: inline-block;
margin:0px;
padding: 0px;
list-style: none;
text-align: center;
}
.nav-bar li {
float: left;
width: 200px;
height: 40px;
background-color: gold;
list-style: none;
line-height: 40px;
}
.nav-bar li a {
text-decoration: none;
display: block;
}
.nav-bar-dropdown {
float: right;
display: none;
padding-left: 0px;
}
/* Hover effects */
.nav-bar > li:hover .nav-bar-dropdown {
display: block;
}
.nav-bar-dropdown :hover, .nav-bar li :hover {
background-color: goldenrod;
}
.container {
/* display: inline-block; */
padding-top: 50px;
padding-bottom: 50px;
color: white;
text-align: center;
width: 100%;
background-color: rgba(94,97,100,0.4);
}
.container > h1 {
color: gold;
}
#email {
color: gold;
}
#home-image {
width: 450px;
}
label {
display: none;
}
#toggle {
display: none;
}
@media only screen and (max-width: 799px) {
label {
display:block;
background-color: gold;
cursor: pointer;
text-align: right;
padding: 5px 40px 5px 0;
font-size: 26px;
width: 100%;
}
.nav-bar > li {
display: none;
width: 100%;
}
.nav-bar > li > a {
display: block;
}
#toggle:checked + .nav-bar > li {
display: block;
border-left: 1px solid goldenrod;
}
.nav-bar > li:active .nav-bar-dropdown {
display: none;
}
}