-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (56 loc) · 809 Bytes
/
style.css
File metadata and controls
67 lines (56 loc) · 809 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
59
60
61
62
63
64
65
66
67
body {
margin: 0;
background: url('checker.svg');
}
article {
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 10000px;
}
article h1,
article p {
padding: 0.5em;
}
article h1 {
color: black;
background: Aquamarine;
}
article p {
color: white;
background: Crimson;
text-align: right;
}
#info {
position: fixed;
top: 30px;
right: 30px;
width: 200px;
min-height: 150px;
padding: 1em;
color: white;
opacity: 0.8;
box-shadow: 0 0 30px gray;
}
#info p {
display: flex;
width: 100%;
justify-content: space-between;
}
#info p:first-child {
text-decoration: underline;
}
#info button {
background: white;
padding: 0.5em;
width: 45%;
}
#info a {
color: white;
}
h1, p {
margin: 0;
}
p + p {
margin-top: 0.5em;
}