-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
63 lines (55 loc) · 1.12 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
@charset "UTF-8";
/* styles.css */
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background: url('background-image.jpg') no-repeat center center fixed;
background-size: cover;
}
header {
position: absolute;
top: 0;
width: 100%;
padding: 1em 0;
display: flex;
justify-content: center;
background-color: rgba(255, 255, 255, 0.8);
}
nav ul {
list-style: none;
display: flex;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
text-decoration: none;
color: #333;
font-weight: bold;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: #0077cc;
}
.button-container {
display: flex;
flex-direction: column;
}
.custom-button {
display: inline-block;
padding: 10px 20px;
margin: 5px 0;
background-color: #0077cc;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.custom-button:hover {
background-color: #005fa3;
}