-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (49 loc) · 859 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Cairo+Play&family=Oswald&display=swap');
html {
box-sizing: border-box;
}
body{
min-height: 100vh;
margin: 0;
}
h1{
font-size: 2.5rem;
letter-spacing: 0.3rem;
text-align: center;
margin-bottom: 2rem;
}
.header{
position: relative;
}
.loader{
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.loader img{
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 100px;
height: 100px;
}
.image-container{
margin: 0 20%;
}
.image-container img{
width: 100%;
margin: .5rem;
}
@media screen and (max-width: 850px){
h1{
font-size: 2rem;
letter-spacing: 0.2rem;
}
.image-container{
margin: 0 5%;
}
.image-container img{
margin: .2rem;
}
}