blob: a0f8f686f9b432a1c5013ce2e814480c4dfc25a5 (
plain)
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
|
@charset "UTF-8";
html {
font-family: Hack, "Source Code Pro", "DejaVu Sans Mono", monospace;
}
body {
position: absolute;
margin: 0;
width: 100%;
background-image:url("../img/ashley_2219.png");
background-repeat: no-repeat;
background-position: center center;
}
header h1 {
text-align: center;
}
main {
margin: 2rem auto;
max-width: 42rem;
}
#act {
background-color: rgba(255,255,255,0.5);
margin-bottom: 3rem;
padding: 0.25rem 1rem;
border-radius: 1rem;
border-bottom-left-radius: 0;
}
aside {
margin: 0 auto;
max-width: 42rem;
}
|