-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
144 lines (121 loc) · 2.58 KB
/
styles.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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
overflow: hidden;
height: 100%;
}
header {
text-align: left;
}
body {
background-image: url('map.png');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
#logo {
float: left;
display: flex;
align-items: center;
margin: 0 10px;
font-size: medium;
}
nav ul {
list-style: none;
display: flex;
padding: 20px;
justify-content: center;
word-spacing: 10px;
background-color: rgb(44, 2, 2);
margin: 0;
opacity:0.6;
}
#first {
float: left;
}
nav ul li {
margin: 0 90px;
background-color:rgb(44, 2, 2);
}
.navbar-button {
float: right;
padding: 40;
background-color: rgb(14, 13, 13); /* Adjust button color */
border: none;
color: rgb(248, 226, 226);
border-radius: 0;
cursor: pointer;
font-size: large;
height: 60px;
width: 100px;
}
.navbar-button:hover {
background-color: #d7e2ee; /* Adjust button color on hover */
}
nav ul li a {
color: #fff;
text-decoration:#d7e2ee;
font-size: large;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
align-items: center;
}
nav ul li a:hover {
color: #73ac0b; /* Color when hovering */
}
main {
padding: 20px;
text-align: center;
}
#main_button {
padding-right: 60px;
padding-left: 60px;
padding-top: 20px; /* Add some vertical padding */
padding-bottom: 20px; /* Add some vertical padding */
background-color: rgba(0, 0, 0, 0.5);
color: #fff;
border: none;
border-radius: 0px;
cursor: pointer;
font-size: large;
fill-opacity: 0.5;
font-weight:bold;
}
#main_button:hover {
background-color: rgb(44, 2, 2);
}
section {
margin: 0;
font-size: larger;
}
.fullscreen-text {
margin: 0;
font-size: 8em;
font-weight: bolder;
text-align: center;
color:rgb(240, 216, 216);
text-shadow: 2px 2px rgb(44, 2, 2);
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 42px rgb(44, 2, 2), 0 0 82px rgb(44, 2, 2),0 0 92px rgb(44, 2, 2);
opacity: 0.68;
text-stroke: 3px rgb(44, 2, 2);
text-decoration:none
width: 100%;
padding-bottom:250px;
}
footer {
background-color: rgba(0, 0, 0, 0.5)#333;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
@media (max-aspect-ratio: 16/9) {
body {
background-size: contain;
}
}