-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (50 loc) · 876 Bytes
/
style.css
File metadata and controls
58 lines (50 loc) · 876 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
49
50
51
52
53
54
55
56
57
58
body {
background-color: black;
background-image: url("bg.jpeg");
background-attachment: fixed;
background-repeat: no-repeat;
font-family: 'Play', sans-serif;
font-size: 1.5em;
font-weight: bold;
}
#container {
position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 80%;
height: 20em;
max-width: 1200px;
}
#content {
width: 60%;
background-color: rgba(255, 255, 255, 0.8);
padding: 2em;
border-radius: 3px;
}
#links {
margin-top: 2em;
}
#links img {
height: 2em;
padding-right: 1em;
}
h1 {
font-size: 3em;
}
@media screen and (max-width: 1280px) {
#content {
width: 80%;
}
}
@media screen and (max-width: 720px) {
#container {
width: 100%;
}
#content {
box-sizing: border-box;
width: 100%;
}
}