-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
57 lines (47 loc) · 1.07 KB
/
index.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
body{
margin: 0px;
}
h1{
/* background: linear-gradient(to right, darkblue, royalblue, lightblue, white); */
/* background-repeat: no repeat; */
/* background-attachment: fixed; */
/* color: white; */
padding: 20px;
font-family: Arial, Helvetica, sans-serif;
}
/* Navigation bar generated with the help of https://www.w3schools.com/css/css_navbar.asp (visited 28 June 2024) */
.topnav {
background: linear-gradient(to left, black, navy, royalblue, navy, black);
background-repeat: no repeat;
background-attachment: fixed;
overflow: hidden;
position: sticky;
top: 0;
}
.topnav a {
float: left;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
font-family: Arial, Helvetica, sans-serif;
position: sticky;
}
.topnav a:hover {
background-color: lightblue;
color: black;
}
.topnav a.active {
background-color: lightseagreen;
color: black;
}
.regular-text {
font-size: 20px;
padding: 20px;
}
li{
padding-top: 0px;
padding-bottom: 10px;
font-size: 20px;
}