About.css
641 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
#about {
display: block;
list-style: none;
text-align: justify;
width: 100%;
height: 50%;
top: 50%;
transform: translate(0, -50%);
position: absolute;
}
#about:after {
display: inline-block;
width: 100%;
height: 0;
content: '';
}
#about .textbox {
text-align: justify;
padding: 0.625em;
width: calc(32% - 1.625em);
height: calc(100% - 1.625em);
overflow: hidden;
box-shadow: 0.625em 0.625em 0.625em rgba(0,0,0,0.7);
}
#about .textbox ol {
text-align: left;
}
#about .textbox ol q {
text-align: justify;
}
#about a {
outline: 0;
}
#about .source {
width: calc(32% - 2.875em);
bottom: 1.4375em;
}