-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcustom.css
More file actions
61 lines (53 loc) · 1.27 KB
/
custom.css
File metadata and controls
61 lines (53 loc) · 1.27 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
:root {
--vp-c-brand-1: #00A1E0;
--vp-c-brand-2: #0090c8;
--vp-c-brand-3: #007eb0;
--vp-c-brand-soft: rgba(0, 161, 224, 0.14);
/* Hero name gradient (Salesforce blue) */
--vp-home-hero-name-color: transparent;
--vp-home-hero-name-background: linear-gradient(135deg, #00A1E0 0%, #0070D2 100%);
}
.dark {
--vp-c-brand-1: #00A1E0;
--vp-c-brand-2: #33b4e6;
--vp-c-brand-3: #66c7ec;
--vp-c-brand-soft: rgba(0, 161, 224, 0.16);
--vp-home-hero-name-background: linear-gradient(135deg, #33b4e6 0%, #00A1E0 100%);
}
/* Hero image sizing */
.VPHero .container {
max-width: calc(var(--vp-layout-max-width) - 100px);
}
.VPHero .image-container {
max-width: 600px !important;
padding: 24px;
margin-bottom: 20px;
}
@media (min-width: 960px) {
.VPHero .image-container {
margin-bottom: 0;
transform: none;
max-width: 100% !important;
margin-left: 60px;
}
}
.VPHero .image-container .image-bg {
display: none;
}
.VPHero .image-container img {
max-width: 600px !important;
max-height: 500px;
object-fit: contain;
}
/* Home features icon treatment */
.VPFeature .box .icon {
background-color: var(--vp-c-brand-soft);
width: 56px;
height: 56px;
font-size: 28px;
border-radius: 12px;
}
.VPFeature .box .icon img {
width: 32px;
height: 32px;
}