blob: 50949693aea8656c82f1009944211ef8d1fbcec3 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
body{
background: url(img/wp.gif) no-repeat fixed;
background-size:cover;
text-align:center;
font-family:Cousine;
}
.language{
text-decoration:none;
font-size:1.2em;
position: absolute;
right:8px;
top: 2px;
}
.links{
display: grid;
justify-content: center;
grid-auto-flow: column;
}
.link{
display: flex;
flex-direction: column;
justify-content:center;
align-items:center;
width: 265px;
height: 215px;
margin: 10px;
background-color: rgba(220, 237, 200, 0.55);
border: 3px solid skyblue;
border-radius: 2%;
}
a{
text-decoration: none;
color: inherit;
}
.link:hover {
opacity: 0.6;
}
.link span{
font-family:tintin;
font-size:1.5em;
position: relative;
top: 3%;
}
.content{
margin: auto;
margin-top: 2%;
margin-bottom: 2%;
padding: 1%;
width: 75%;
background-color: rgba(220, 237, 200, 0.65);
border-radius: 5px;
border: 5px dotted #b4d545;
}
.content h1, h2{
font-family: tintin;
}
.content h1{
text-decoration: underline;
}
.matos{
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.matos ul{
text-align: left;
}
.section-sep{
border: none;
border-top: 2px solid skyblue;
}
.sub-sep{
border: none;
border-top: 3px dotted blue;
}
@font-face{
font-family:Cousine;
src:url(./fonts/CousineNerdFont-Regular.ttf);
}
@font-face{
font-family:tintin;
src:url(./fonts/tintin_talking.ttf);
}
|