-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
111 lines (85 loc) · 1.75 KB
/
styles.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
/* NAVBAR */
.navbar-logo {
max-height: 50px;
}
.navbar {
background-color: #17212B;
}
.navbar-nav .nav-link {
color: white !important;
}
.navbar-nav .nav-link:hover {
color: #419599 !important; /* Slightly different color for hover/active states */
}
.navbar-title {
color: white; !important
}
/* CARDS */
.card {
overflow: hidden;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
transform: scale(1.02, 1.02);
transition: 0.2s;
}
/* Search icon */
.navbar #quarto-search.type-overlay .aa-Autocomplete svg.aa-SubmitIcon {
color: white;
}
.content-block {
padding-top: 20px;
padding-bottom: 10px;
margin-left: 30px;
margin-right: 30px;
}
.hero-banner {
position: relative;
background-color: #D1DBE5;
display: flex;
justify-content: center;
padding: 70px;
border-bottom: 1px solid #17212B;
}
.hero-banner .content-block .hero-text {
width: 100%;
font-size: 1.3rem;
}
.hero-banner .content-block .hero-video {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.hero-banner a {
text-decoration: none;
}
.hero-banner h1 {
font-size: 4rem;
}
.hero-banner h3 {
margin-top: 1.3rem;
margin-bottom: 1.3rem;
}
.hero-banner h4 {
margin-top: 0;
}
.two-column {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.two-column .column {
flex: 1;
min-width: 400px;
align-self: center;
}
.centered-container {
display: flex;
justify-content: center; /* Horizontally centers content (optional) */
height: 100vh; /* Full viewport height */
width: 100%; /* Full width by default */
}
@media (min-width: 1100px) { /* Large screens and up */
.centered-container {
width: 80%; /* Set to 80% width on large screens */
margin: 0 auto; /* Centers the container horizontally */
}
}