-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathglobals.css
48 lines (40 loc) · 901 Bytes
/
globals.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
@import '@radix-ui/themes/styles.css';
@tailwind base;
@tailwind components;
@tailwind utilities;
#changelogcontent {
font-family: var(--font-rubik);
}
.radix-themes {
--cursor-button: pointer;
}
.fancy-border {
transition-property: box-shadow, border-color;
transition-duration: 0.25s;
transition-timing-function: ease-out;
&:hover {
box-shadow:
0 2px 0 rgba(54, 45, 89, 0.15),
-0.1875rem -0.1875rem 0 0.1875rem #f2b712,
0 0 0 0.375rem #e1567c;
text-decoration: none;
cursor: pointer;
}
}
.hero-top-left-down-slope {
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%);
}
.hero-bottom-left-down-slope {
clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%)
}
.footer-top-right-down-slope {
clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
}
.icon {
margin-left: 0.25em;
svg {
display: inline;
width: 14px;
height: 14px;
}
}