-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
81 lines (71 loc) · 1.44 KB
/
styles.css
File metadata and controls
81 lines (71 loc) · 1.44 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
81
body {
background-color: #000;
color: rgb(0, 187, 0);
font-family: 'Roboto', sans-serif;
}
header {
text-align: center;
padding: 50px 0;
}
h1 {
font-size: 3em;
text-transform: uppercase;
letter-spacing: 3px;
text-shadow: 0 0 5px #800080, 0 0 10px #800080, 0 0 20px #800080, 0 0 40px #800080, 0 0 80px #800080, 0 0 90px #800080, 0 0 100px #800080;
}
nav ul {
list-style-type: none;
padding: 0;
text-align: center;
}
nav ul li {
display: inline;
}
.video-background {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background-color: rgba(0, 0, 0, 0.5);
}
nav ul li a {
display: inline-block;
padding: 10px 20px;
text-decoration: none;
color: #800080;
border: 1px solid #800080;
margin: 0 5px;
border-radius: 5px;
}
nav ul li a:hover {
background-color: #800080;
color: #000;
}
nav ul li button {
padding: 10px 20px;
text-decoration: none;
color: #800080;
border: 1px solid #800080;
margin: 0 5px;
border-radius: 5px;
background: none;
}
nav ul li button:hover {
background-color: #800080;
color: #000;
}
.main-content {
text-align: center;
padding: 50px 0;
}
footer {
text-align: center;
padding: 20px 0;
background-color: #000;
color: rgb(0, 54, 0);
}
footer p {
margin: 0;
}