-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
57 lines (50 loc) · 1.01 KB
/
styles.css
File metadata and controls
57 lines (50 loc) · 1.01 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
body {
font-family: Arial, sans-serif;
background: url("background.jpg") no-repeat center center fixed;
background-size: cover;
color: white;
text-align: center;
}
header {
background: rgba(0, 0, 0, 0.8);
color: white;
padding: 20px;
font-size: 24px;
}
.nav-btn {
background: rgba(255, 255, 255, 0.3);
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
font-size: 18px;
transition: 0.3s;
}
.nav-btn:hover {
background: rgba(255, 255, 255, 0.5);
}
section {
background: rgba(0, 0, 0, 0.7);
padding: 20px;
margin: 20px auto;
width: 80%;
border-radius: 5px;
}
.submit-btn {
background: #444;
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
font-size: 18px;
transition: 0.3s;
}
.submit-btn:hover {
background: #222;
}
footer {
background: rgba(0, 0, 0, 0.8);
color: white;
padding: 10px;
font-size: 14px;
}