-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
58 lines (50 loc) · 986 Bytes
/
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: black;
}
header {
background-color: #333;
color: white;
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline-block;
margin-right: 20px;
}
nav ul li a {
color: #FF006E;
text-decoration: none;
}
.buttons button {
background-color: #FF006E;
color: #FCFF38;
border: 2px solid #FCFF38;
padding: 8px 16px;
border-radius: 4px;
cursor: pointer;
}
.buttons button a {
color: #FCFF38;
text-decoration: none;
}
.buttons button:hover {
background-color: #FCFF38;
color: #FF006E;
}
.logo img {
width: 95px; /* Adjust the width as needed */
height: auto;
position: absolute;
top: -20px; /* Adjust the top position */
left: 10px; /* Adjust the left position */
}