-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
80 lines (66 loc) · 1.04 KB
/
index.css
File metadata and controls
80 lines (66 loc) · 1.04 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
body {
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
}
nav {
background-color: transparent;
color: white;
padding: 10px;
position: fixed;
top: 0;
right: 0; /* Updated to align the menu to the top right */
z-index: 100;
}
h2 {
font-size: 20px;
}
main {
margin: 0;
padding: 0;
padding-top: 50px; /* Add padding to create space for the fixed navigation menu */
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
text-align: right; /* Updated to align the menu items to the right */
}
nav ul li {
display: inline-block;
margin-left: 10px;
}
nav ul li a {
color: white;
text-decoration: none;
}
section {
min-height: 100vh;
padding: 20px;
}
#about {
background-color: #52be80;
color: white;
}
#features {
background-color: #f9ca24;
}
#download {
background-color: #4385f5;
}
#contact {
background-color: #92d050;
color: white;
}
#team {
background-color: #599e6e;
color: white;
}
p {
margin-bottom: 10px;
color: white;
}
a {
color: white;
text-decoration: none;
}