-
Notifications
You must be signed in to change notification settings - Fork 139
/
Copy pathindex.module.css
115 lines (99 loc) · 1.89 KB
/
index.module.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
/**
* CSS files with the .module.css suffix will be treated as CSS modules
* and scoped locally.
*/
@font-face {
font-family: 'GT Planar';
src: url("../fonts/GT-Planar-Regular.woff2") format("woff2"),
url("../fonts/GT-Planar-Regular.woff") format("woff")
url("../fonts/GT-Planar-Regular.ttf") format("true-type");
font-weight: normal;
font-style: normal;
}
.homePage {
background: linear-gradient(0deg, #133629 0%, #3E6957 100%) !important;
}
.fixedLine {
position: sticky;
top: 0;
left: 3%;
width: 94%;
height: 1.5px;
background-color: white;
}
.homePage h1,
.homePage h2,
.homePage h3,
.homePage h4,
.homePage h5,
.homePage span {
font-family: 'GT Planar', sans-serif;
color: #F0EBDE;
}
.container {
color: white !important;
}
.announcementBarContent {
color: rgb(9, 30, 66) !important;
}
.homePage h1 {
font-size: 2rem;
}
.heroBanner {
padding: 3rem 0 2rem 0;
text-align: center;
position: relative;
overflow: hidden;
background-color: transparent;
display: flex;
flex-direction: column;
width: 100%;
}
.heroBanner img {
max-width: 550px;
}
@media screen and (max-width: 1000px) {
.heroBanner {
padding: 2rem;
}
}
/* general flex column */
.flexCol {
display: flex;
flex-direction: column;
align-items: center;
}
.copyField {
padding: 8px 14px 8px 14px;
border-radius: 10px;
border: 1px solid #F0EBDE;
width: fit-content;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
min-width: 300px;
}
@media screen and (max-width: 320px) {
.copyField {
width: 100%;
min-width: 100%;
}
.homePage h1 {
font-size: 1.5rem;
}
.homePage h2 {
font-size: 1.2rem;
}
}
.iconButton {
background-color: transparent;
border: none;
display: flex;
align-items: center;
justify-content: center;
}
.icon:hover {
transition: transform 0.3s ease;
transform: scale(1.2);
}