-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathstyles.module.scss
More file actions
131 lines (109 loc) · 2.25 KB
/
styles.module.scss
File metadata and controls
131 lines (109 loc) · 2.25 KB
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
/*
* SPDX-FileCopyrightText: the secureCodeBox authors
*
* SPDX-License-Identifier: Apache-2.0
*/
/* stylelint-disable docusaurus/copyright-header */
/**
* CSS files with the .module.css suffix will be treated as CSS modules
* and scoped locally.
*/
@use "../css/_mixins.scss" as *;
@import "../css/custom.css";
.heroBanner {
padding: 2rem;
position: relative;
overflow: hidden;
background-color: black;
@include lg {
padding: 4rem 0;
}
h1 {
color: white;
}
}
.description {
color: var(--accent-color-main);
}
.integrations {
display: grid;
grid-template-columns: auto;
padding: 2rem 0;
@include lg {
grid-template-columns: auto auto auto;
}
a {
text-decoration: none !important;
color: unset;
}
}
.light:hover {
box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
h3 {
margin: 20px 0 10px;
}
h2 {
margin: 20px 0 0;
}
.dark {
background-color: whitesmoke;
color: black !important;
&:hover {
box-shadow: 2px 2px 8px rgba(255, 255, 255, 0.4);
}
}
main {
h3 {
line-height: 24px;
padding-bottom: 20px;
border-bottom: 1px solid lightgray;
}
}
.getStarted {
color: white !important;
&:hover {
color: black !important;
}
}
.goToSolutionBulletList {
ul {
list-style: none; /* Remove default bullets, necessary to add back custom colored ones */
}
ul li::before {
content: "\25AA"; /* Add content: \2022 is the CSS Code/unicode for a default bullet, \25AA for a square bullet */
color: var(--accent-color-main); /* Change the color */
font-weight: bold; /* If you want it to be bold */
display: inline-block; /* Needed to add space between the bullet and the text */
width: 1em; /* Also needed for space (tweak if needed) */
margin-left: -1em; /* Also needed for space (tweak if needed) */
}
li {
margin-bottom: 20px;
}
label {
color: var(--accent-color-main);
font-weight: bold;
}
}
.sponsor {
display: flex;
align-items: center;
justify-content: center;
a {
width: 100%;
margin: 0px 5px;
}
img {
width: 100%;
max-width: 300px;
object-fit: cover;
}
}
/* ---------------- Mobile Utility ------------------ */
.defaultMarginBottom {
margin-bottom: 40px;
@include xl {
margin-bottom: unset;
}
}