-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (64 loc) · 1.36 KB
/
style.css
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
/* Ne lopd a cssem amúgyis kurva szar */
@import url('https://fonts.googleapis.com/css2?family=Londrina+Sketch&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
html {
transition-duration: 0.4s;
filter: blur(0.5px);
}
html:hover {
filter: blur(0px);
}
body {
background-image: url('img/bg.jpg');
background-repeat: no-repeat;
background-size: cover;
background-color: black;
color: white;
font-size: 130%;
}
h1 {
font-family: Londrina Sketch;
}
.cigany {
position: relative;
top: 100px;
font-size: x-large;
transition-duration: 0.4s;
}
.cigany:hover {
font-size: xx-large;
top: 85px;
}
.mindenaminemcigany {
position: relative;
top: 150px;
}
h2 {
font-family: Poppins;
}
p {
font-family: Poppins;
}
.szoveg {
font-size: 75%;
padding-left: 500px;
padding-right: 500px;
}
.szoveg li {
font-size: 115%;
font-family: 'Courier New', Courier, monospace;
}
.menu {
border: 2px solid rgb(19, 19, 19);
padding: 5px;
background-color: rgb(37, 37, 37);
border-radius: 5px;
position: fixed;
bottom: 0px;
right: 5px;
}
.menu a {
text-decoration: none;
color: white;
font-size: 166%;
}