-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
132 lines (106 loc) · 1.92 KB
/
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font: normal 16px sans-serif;
color: #342c5c;
scroll-behavior: smooth;
}
ul,
nav {
list-style: none;
}
a {
text-decoration: none;
opacity: 0.85;
}
a:hover {
opacity: 1;
}
a.btn {
border-radius: 4px;
text-transform: uppercase;
font-weight: bold;
text-align: center;
background-color: #fff;
opacity: 1;
}
header {
position: fixed;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 45px 100px 15px;
animation: .75s fadein 0.25s forwards;
opacity: 0;
z-index: 100;
/* background-color: lightblue; */
background-image: linear-gradient(to right, #272d50, #342c5c);
/* maybe change animation to 1s fadein 0.5s if you want it slower/smoother */
}
#nav-stuff a {
color: white;
}
@keyframes fadein {
100% {
opacity: 1;
}
}
header h2 {
font-family: "Quicksand", sans-serif; /* TO BE REPLACED */
}
header nav {
display: flex;
margin-right: -15px;
}
header nav li {
margin: 0 15px;
}
section {
display: flex;
flex-direction: column;
align-items: center;
padding: 100px 50px 50px;
}
.hovering {
stroke: white;
}
#vizOne {
background-color: #fecfd9;
margin-top: 20px;
}
.axis path,
.axis line {
stroke: blue;
}
/* .axis text {
} */
.seeThrough {
opacity: .5;
}
.svgTwo {
background-color: paleturquoise
}
#vizTwo {
margin-top: 20px;
}
#vizThree {
background-color: #dfffe4;
margin-top: 20px;
}
section:nth-child(even) {
background-image: linear-gradient(to bottom right, #febfe8, #fedfc9);
}
section:nth-child(odd) {
background-image: linear-gradient(to top left, #feaff9, #feefb9);
}
.text-matter {
margin: 25px 25%;
font-size: 17px;
}
.title {
margin-top: 15px;
}