-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathglobal.css
115 lines (96 loc) · 2.31 KB
/
global.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
@tailwind base;
@tailwind components;
@tailwind utilities;
/* CSS HEX */
--crimson: #d7263dff;
--giants-orange: #f46036ff;
--space-cadet: #2e294eff;
--persian-green: #1b998bff;
--mindaro: #c5d86dff;
.color-1 {
color: #d7263dff !important;
}
.color-2 {
color: #d7263dff !important;
}
.color-3 {
color: #2e294eff !important;
}
.color-4 {
color: #1b998bff !important;
}
.color-5 {
color: #c5d86dff !important;
}
/* SCSS Gradient
$gradient-top: linear-gradient(0deg, #d7263dff, #f46036ff, #2e294eff, #1b998bff, #c5d86dff);
$gradient-right: linear-gradient(90deg, #d7263dff, #f46036ff, #2e294eff, #1b998bff, #c5d86dff);
$gradient-bottom: linear-gradient(180deg, #d7263dff, #f46036ff, #2e294eff, #1b998bff, #c5d86dff);
$gradient-left: linear-gradient(270deg, #d7263dff, #f46036ff, #2e294eff, #1b998bff, #c5d86dff);
$gradient-top-right: linear-gradient(45deg, #d7263dff, #f46036ff, #2e294eff, #1b998bff, #c5d86dff);
$gradient-bottom-right: linear-gradient(135deg, #d7263dff, #f46036ff, #2e294eff, #1b998bff, #c5d86dff);
$gradient-top-left: linear-gradient(225deg, #d7263dff, #f46036ff, #2e294eff, #1b998bff, #c5d86dff);
$gradient-bottom-left: linear-gradient(315deg, #d7263dff, #f46036ff, #2e294eff, #1b998bff, #c5d86dff);
$gradient-radial: radial-gradient(#d7263dff, #f46036ff, #2e294eff, #1b998bff, #c5d86dff);
*/
.nextra-content a {
text-decoration: none !important;
font-weight: 700;
}
.authors-title {
margin-bottom: 5px;
display: block;
}
.author-block {
margin-left: 5px;
}
.author-name {
margin-bottom: 5px;
}
.author-role,
.resource-description {
font-weight: 400;
}
.resource-block {
margin-left: 10px;
}
.resource-card {
width: 50%;
margin: 20px 0;
gap: 20px;
border: 1px solid rgba(229, 229, 229, 0.5);
border-radius: 8px;
}
.resource-card:hover {
border-color: rgba(229, 229, 229);
}
.resource-card svg {
width: 2rem !important;
}
.nextra-sidebar-container .nextra-focus {
font-weight: 400;
}
.nx-list-disc {
margin-top: 0 !important;
}
.irembed-wrapper {
margin: 40px 0;
}
/* Default image for light mode */
.logo {
position: relative;
right: 21px;
width: 180px;
}
.dark .logo-dark {
display: block;
}
.dark .logo-light {
display: none;
}
.light .logo-light {
display: block;
}
.light .logo-dark {
display: none;
}