-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
134 lines (111 loc) · 2.05 KB
/
styles.css
File metadata and controls
134 lines (111 loc) · 2.05 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
body {
margin: 0;
padding: 0;
font-family: Quicksand, Arial;
height: 100%;
background :url("https://cdn.glitch.com/75a5f7e6-789a-4ff7-b9fd-f95113370adc%2FBG.png?1519969950638");
background-size: cover;
background-position: center;
}
.wordhover {
opacity: 0;
}
nav {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100px;
padding: 10px 100px;
box-sizing: border-box;
transition: .3s;
}
nav.black {
background: rgba(0, 0, 0, 0.8);
height: 100px;
padding: 10px 100px;
}
nav .logo {
padding: 22px 20px;
height: 80px;
float: left;
font-size: 20px;
transition: .3s;
}
nav.black .logo {
color: #fff;
}
nav ul {
list-style: none;
float: right;
margin: 0;
padding: 0;
display: flex;
}
nav ul li {
list-style: none;
}
nav ul li a {
line-height: 80px;
color: #151515;
padding: 12px 30px;
text-decoration: none;
text-transform: uppercase;
transition: .3s;
}
.sec1 h1 {
margin: 0;
color: #ffffff;
position: absolute;
text-align: center;
width: 100%;
top: 50vh;
font-family: "Permanent Marker", Arial;
font-size: 80px;
}
nav.black ul li a {
color: #fff;
}
nav ul li a:focus {
outline: none;
}
.hover:hover {
text-shadow: 2px 2px 3px rgba(58, 58, 58, 0.25), 2px 2px 3px rgba(58, 58, 58, 0.25);
}
nav.black ul li a:hover {
color: grey;
}
nav ul li a.active {
background: #E2472F;
color: #fff;
border-radius: 6px;
}
nav ul li a.active:hover {
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 10px 40px 0 rgba(0,0,0,0.19);
font-weight: 300;
color: black;
background: #E2472F;
border-radius: 5px;
}
.content {
margin-top: 80px;
}
.content p {
width: 900px;
margin: 30px auto;
text-align: justify;
font-size: 20px;
line-height: 30px;
}
#custom-handle1, #custom-handle2 {
width: 3em;
height: 1.6em;
top: 50%;
margin-top: -.8em;
text-align: center;
line-height: 1.6em;
}
.slider {
margin-bottom: 10px;
position: absolute;
}