forked from QuantStack/quantstack.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.module.css
More file actions
106 lines (91 loc) · 1.9 KB
/
styles.module.css
File metadata and controls
106 lines (91 loc) · 1.9 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
.h2_custom {
color: var(--ifm-color-blue-jupyter);
}
.sub_header {
text-align: left;
}
.hero_container {
background-color: var(--ifm-color-primary-p0);
padding-bottom: var(--ifm-spacing-3xl);
}
.banner_container {
position: relative;
width: 100%;
display: flex;
align-items: center;
background-image: url('/img/banner/notebook-link-banner.svg');
background-position: center;
background-repeat: no-repeat;
height: 464px;
padding-bottom: 110px;
}
.banner_image {
width: 100%;
height: auto;
display: block;
}
.banner_text_overlay {
margin-top: 50px;
margin-left: auto;
margin-right: auto;
text-align: center;
color: white;
/* or whatever contrasts with your SVG */
font-size: 2rem;
font-family: var(--ifm-font-family-kode-mono);
}
.banner_text_overlay_title {
font-size: 48px;
font-weight: 400;
font-style: normal;
line-height: 100%;
}
.banner_text_overlay_subtitle {
font-size: 32px;
font-style: normal;
}
.notebook_link {
color: #FCF12B;
font-weight: 700;
font-style: bold;
line-height: 100%;
font-family: var(--ifm-font-family-inter);
}
.link_to_notebook_link {
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg,
#5242FF,
#2A2A2A);
color: white;
width: 358px;
font-weight: 700;
font-family: var(--ifm-font-family-roboto);
font-weight: 600;
font-size: 24px;
}
@media only screen and (max-width: 996px) {
/*Mobile*/
.logos_carousel {
display: none;
}
}
@media only screen and (min-width: 996px) {
/*Desktop*/
.table_with_8_customers {
margin-bottom: var(--ifm-spacing-xl);
}
.customer_logo {
filter: grayscale(1);
width: 100px;
}
.worked_with {
font-size: 24px;
font-weight: 200;
font-family: var(--ifm-font-family-rubik-one);
color: var(--ifm-color-primary-p2);
text-align: center;
margin: var(--ifm-spacing-2xl) 0;
}
}