blob: c6edf232a34f57eccf1e0536ab0e0b76cb2e6e5c (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#about, #cv {
h1 {
margin-bottom: 0px;
}
h2 {
margin-top: 30px;
}
.info {
margin-bottom: 30px;
}
a {
color: $text-color;
text-decoration: underline;
&:hover {
text-decoration: none;
}
}
.info a {
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
p {
position: relative;
margin-right: 0;
}
code {
font: normal normal;
color: $text-color;
background-color: $background-color;
border: 0px;
}
p code {
position: absolute;
text-align: right;
right: 0%;
}
.end {
margin-top: 50px;
}
}
|