-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (93 loc) · 1.87 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
html {
scroll-behavior: smooth;
scrollbar-color: #8a8a8a white;
scrollbar-width: thin;
}
body, header {
font-family: 'Quattrocento Sans', sans-serif;
height: 100vh;
margin: 0;
}
header {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 100%;
width: 100%;
background: linear-gradient(100deg, #4c566a 39.9%, #a3be8c 40%);
color: #e5e9f0;
text-align: left;
}
footer {
background-color: #4c566a;
color: black;
margin: 0;
padding: 10px;
height: auto;
position: relative;
display: block;
text-align: center;
}
body {
color: white;
}
/* nice-to-have idea: the column size for each section randomly generates */
.right_column {
padding-top: 10vh;
padding-bottom: 10vh;
display: flex;
justify-content: flex-end;
margin: auto;
background: linear-gradient(90deg, #88c0d0 60%, #4c566a 60%);
}
.right_textbox {
padding-right: 17vw;
width: 17vw;
}
.left_column {
padding-top: 10vh;
padding-bottom: 10vh;
display: flex;
justify-content: flex-start;
margin: auto;
background: linear-gradient(90deg, #4c566a 30%, #e5e9f0 30%);
}
.left_textbox {
padding-left: 7vw;
width: 20vw;
}
.header_title {
padding-top: 37vh;
padding-left: 12vw;
font-family: 'Montserrat', sans-serif;
font-size: 68px;
}
.header_subtitle {
font-family: 'Montserrat', sans-serif;
font-size: 20px;
padding-left: 12vw;
padding-bottom: 20px;
}
.header_description {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
padding-left: 12vw;
width: 20vw;
}
.down_arrow {
color: #3b4252;
width: 100%;
text-align: center;
padding-top: 15vh;
}
.up_arrow {
width: 100%;
text-align: center;
}
a {
color: #3b4252;
text-decoration: none;
}
a:hover {
color: #e5e9f0;
}