-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
66 lines (56 loc) · 945 Bytes
/
styles.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
body{
margin: 0;
text-align: center;
font-family: 'Oswald', sans-serif;
}
.landing-page{
background-image: url("assets/180DC_Background.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 100vh;
}
.inner-landing-page{
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
backdrop-filter: blur(2px);
}
.logo{
width: 28%;
}
h2{
color: lightgreen;
padding-top: 2%;
font-size: 1.8rem;
}
.title{
color: white;
}
.signing-off-page{
display: flex;
flex-direction: column;
background-color: black;
align-items: center;
}
.sgn-title{
color: white;
font-size: 2.2rem;
padding-top: 2%;
font-family: 'Combo', cursive;
}
.coco-img{
width: 40%;
}
p{
color: white;
}
@media(max-width:600px) {
.logo{
width:80%;
}
.coco-img{
width: 80%;
}
}