-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
73 lines (58 loc) · 957 Bytes
/
main.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
#hatter {
width: 100%;
height: 100%;
background: url(assets/intro-backgr.jpg) no-repeat center center fixed;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
}
#nevjegy {
border: 2px solid;
border-radius: 10px;
box-shadow: rgba(0,0,0,.6) .125rem .125rem;
width: 60%;
color: rgba(0,0,0,.8);
background-color: rgba(200,200,200,.5);
}
#rolam {
margin-top: 10px;
font-size: 2rem;
line-height: 2.1rem;
}
.lead {
text-align: center;
}
p {
padding: .25rem;
line-height: 1.5rem;
font-size: 1.5rem;
text-align: center;
}
#linkek {
text-align: center;
align-content: center;
}
i {
margin-bottom: 10px;
}
img {
display: inline-block;
border: 1px solid;
border-color: #aaa;
border-radius: 15px;
position: relative;
}
@media (min-height:600px) {
#hatter {
height: 100vh;
}
}
@media (max-width:400px) {
#rolam {
font-size: 1.1rem;
}
p {
font-size: .9rem;
}
}