-
Notifications
You must be signed in to change notification settings - Fork 1
/
new.css
72 lines (63 loc) · 1.15 KB
/
new.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.hero {
padding: 40% 1em;
height: 100vh;
display: flex;
justify-content: space-evenly;
flex-direction: column;
align-items: center;
background-color: #e43;
color: #eee;
}
.title1,
.title2 {
text-align: center;
width: 100%;
font-size: 250%;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.red {
background-color: #e43;
}
.red > .index {
background-color: #3ae;
}
.blue {
background-color: #3ae;
}
.blue > .index {
background-color: #e43;
}
.statement {
padding: 8%;
line-height: 1.5;
display: flex;
align-items: center;
position: relative;
height: 100vh;
color: #eee;
font-size: 1.5rem;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.index {
position: absolute;
top: 10px;
left: 10px;
height: 40px;
width: 40px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
}
.big {
position: absolute;
right: 12%;
bottom: 10%;
font-size: 15rem;
opacity: 25%;
}