-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
48 lines (41 loc) · 717 Bytes
/
main.css
File metadata and controls
48 lines (41 loc) · 717 Bytes
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
html, body {
height: 100%;
}
body {
background: url("brooklyn-bridge_mini.jpg") no-repeat center center fixed;
background-size: cover;
}
h1 {
font-family: 'Roboto', cursive;
font-size: 40px;
}
.overlay {
background-image: url("pattern.png");
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: -1;
}
#container {
min-height: 100%;
min-width: 100%;
border-collapse: collapse;
display: table;
color: white;
text-align: center;
}
#links {
display: table-row;
vertical-align: bottom;
}
a {
font-family: 'Roboto', cursive;
color: #fff;
text-decoration: none;
}
a:hover {
color: #0ff;
}