-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyle.css
145 lines (121 loc) · 2.17 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
body {
background-image: url(../background_patterns/webb-dark.png);
background-color: #06040ae1;
color: white;
font-family: montserrat;
max-width: 100%;
overflow-x: hidden;
}
@font-face {
font-family: roboto;
src: url(../fonts/Roboto-Regular.ttf);
}
@font-face {
font-family: sofia-sans;
src: url(../fonts/SofiaSans-Medium.ttf);
}
@font-face {
font-family: montserrat;
src: url(../fonts/Montserrat-Regular.ttf);
}
@font-face {
font-family: merriweather;
src: url(../fonts/Merriweather-Regular.ttf);
}
p {
color: white;
}
input {
color: white;
width: 50%;
text-align: center;
}
b {
color: white;
}
a {
color: rgba(143, 173, 255, 0.979);
}
button:hover {
opacity: 80%;
}
h1, h2, h3, h4, h5 {
color: white;
text-align: center;
}
h3 {
margin-top: 50px;
}
.text {
margin: 1%;
font-size: large;
}
ul li::before {
color: white;
}
li {
list-style-type: circle;
color: white;
}
nav div ul li {
font-size: large;
}
#main-heading {
margin-top: 0mm;
padding: 5mm;
text-align: center;
}
.jittery {
font-family: monospace;
font-size: larger;
}
.filter-type {
color: white;
font-size: larger;
font-weight: bold;
}
.visit-button {
margin-bottom: 20px;
}
.slidecontainer {
width: 100%;
}
.slider {
-webkit-appearance: none; /* Override default CSS styles */
appearance: none;
width: 100%; /* Full-width */
height: 25px; /* Specified height */
background: #d3d3d3; /* Grey background */
outline: none; /* Remove outline */
opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
-webkit-transition: 0.2s; /* 0.2 seconds transition on hover */
transition: opacity 0.2s;
}
hr {
margin: 10px;
padding: 0px;
display:block;
clear: both;
width: 100%;
background-color:#ffffff;
height: 1px;
}
.loader {
position: absolute;
top: calc(50% - 60px);
left: calc(50% - 60px);
border: 16px solid #f3f3f3; /* Light grey */
border-top: 16px solid #3498db; /* Blue */
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}