-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstylesheet.css
More file actions
55 lines (47 loc) · 777 Bytes
/
stylesheet.css
File metadata and controls
55 lines (47 loc) · 777 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
/* styles for basic website */
body {
background: #181036;
font-family: "PT Mono", "Courier New", Courier, monospace;
color: #fefeff;
font-size: 22px;
line-height: 1.4em;
}
a {
color: #7998f2;
}
strong {
color: #f85e9f;
}
.title,
.screenshot {
width: 100%;
margin-top: 50px;
}
.explanation {
display: block;
margin-top: 100px;
width: 800px;
margin-left: auto;
margin-right: auto;
margin-bottom: 50px;
}
.title img,
.screenshot img {
display: block;
margin-left: auto;
margin-right: auto;
}
.footer {
display: block;
margin-top: 50px;
width: 800px;
margin-left: auto;
margin-right: auto;
margin-bottom: 100px;
text-align: center;
border-top: 2px #332273 solid;
}
table {
margin-top: 50px;
border-spacing: 2rem;
}