blob: 0cb9c6f009a8aa954c23b3c1eb677870cd6f1404 (
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
|
body{
background-image:url(img/wp.gif);
background-size:cover;
text-align:center;
font-family:Cousine;
}
.language{
text-decoration:none;
position: absolute;
right:5px;
top: 0;
}
.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%;
}
@font-face{
font-family:Cousine;
src:url(./fonts/CousineNerdFont-Regular.ttf);
}
@font-face{
font-family:tintin;
src:url(./fonts/tintin_talking.ttf);
}
|