-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain2.css
72 lines (62 loc) · 842 Bytes
/
main2.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
* {
box-sizing: border-box;
}
body {
font-family: Helvetica, Arial;
overflow-y: scroll;
margin: 0;
}
.container {
min-height: 100vh;
}
.heading {
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
.title {
font-size: 4rem;
}
.subtitle {
font-size: 2.5rem;
}
.hide {
opacity: 0;
}
.section {
position: relative;
display:flex;
}
.text {
position:relative;
left:0;
width: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
font-size: 2em;
}
.chart {
display: flex;
width: 50%;
left: 50%;
position:absolute;
top:0;
background-color: white;
z-index:999;
}
p {
padding-left: 7rem;
padding-right: 7rem;
}
.is-bottom{
top: auto;
bottom: 0;
}
.fixedChart {
position: fixed;
top: 0;
bottom: auto;
}