-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
176 lines (156 loc) · 3.94 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
body {
margin: 0;
}
body {
margin: 0;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
box-sizing: border-box;
height: 100vh;
width: 100vw;
overflow-y: hidden;
overflow-x: hidden;
}
#container{
overflow-x:scroll;
overflow-y: scroll;
width: 100vw;
height: 100vh;
}
img{
border-radius: 5px;
box-sizing: border-box;
height: 90px;
}
foreignObject:has(.Nicolaus17),foreignObject:has(.Max49),foreignObject:has(.Ernst48),foreignObject:has(.Wilhelm50),foreignObject:has(.Ernst15),foreignObject:has(.Rudolf41), foreignObject:has(.Richard16),foreignObject:has(.Martin47),foreignObject:has(.Carl45),foreignObject:has(.Oscar14),foreignObject:has(.Rudolf13),foreignObject:has(.Gustav6),foreignObject:has(.Jean-Baptiste12),foreignObject:has(.Siméon5),foreignObject:has(.Joseph11),foreignObject:has(.Pierre-Simon4),foreignObject:has(.Leonhard10),foreignObject:has(.Jean3),foreignObject:has(.Johann9),foreignObject:has(.Jacob8),foreignObject:has(.Caspar18),foreignObject:has(.Tycho22),foreignObject:has(.Johannes23),foreignObject:has(.Willebrord25),foreignObject:has(.Christiaan28),foreignObject:has(.Gottfried29){
background-color : #daa520;
}
foreignObject:hover{
stroke: #daa520;
background-color: #daa520;
transition: 0.4s;
z-index: -1999;
}
.huh{
height: 4em;
}
h4{
text-transform:uppercase;
}
.header1
{
text-transform: uppercase;
position:fixed;
top: 0;
left: 0;
background-color:#daa520;
width: 100vw;
padding: 12px;
height: 1.5em;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 0;
padding: 20px 30px;
border-radius: 2px;
}
.logo
{
font-size: 1em;
user-select: none;
}
.navbar{
margin: 4%;
}
.navbar a
{
position:relative ;
color: black;
font-size: 1em;
font-weight: 600;
margin-left: 20px;
margin-right: 20px;
text-decoration: none;
}
.navbar a::after
{
content: '';
background: maroon;
border-radius: 0.5px;
width: 100%;
height: 3px;
position: absolute;
left: 0;
bottom: -4px;
transform: scaleX(0);
transition: transform 0.5s;
}
.navbar a:hover::after
{
transform: scaleX(1);
}
ul{
font-size: small;
list-style: none;
font-size: 24px;
}
li{
line-height: 42px;
padding: 18px;
}
footer{
background-color: #daa520;
padding: 2px;
}
.hamburger-menu {
display: none; /* Hide by default for larger screens */
cursor: pointer;
flex-direction: column;
justify-content: space-between;
width: 20px;
height: 15px;
margin-right: 50px; /* Adjust margin as needed */
}
.bar {
width: 100%;
height: 2px;
background-color: #333; /* Adjust color as needed */
}
@media (max-width: 660px) {
footer {
font-size: 0.7em;
}
}
@media (max-width: 810px) {
.hamburger-menu {
display: flex;
flex-direction: column; /* Display the bars in a column */
cursor: pointer;
padding: 10px; /* Add padding for better clickability */
}
.navbar {
display: none;
flex-direction: column; /* Display the menu options in a column */
position: absolute;
top: 25px; /* Adjust the top position as needed */
right: 0%;
width: 200px;
background-color: #daa520; /* Background color for the menu */
z-index: 1;
}
.navbar a{
font-size: 0.7em;
}
.navbar.show-menu {
display: flex;
}
.navbar a {
color: black;
font-size: 0.8 em;
font-weight: 600;
text-decoration: none;
padding: 10px; /* Adjust padding as needed */
text-align: center; /* Center text within each menu option */
border-bottom: 1px solid #333; /* Add a border between menu options */
box-sizing: border-box; /* Include padding and border in element's total width and height */
}
}