-
Notifications
You must be signed in to change notification settings - Fork 17
/
style.css
121 lines (102 loc) · 2.27 KB
/
style.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
116
117
118
119
120
121
*,
*::before,
*::after {
box-sizing: border-box;
}
:root {
--body-bg: hsl(0, 0%, 12%);
}
html {
color-scheme: dark light;
}
body {
background: var(--body-bg);
color: white;
font-family: system-ui;
font-size: 1.25rem;
line-height: 1.5;
margin: 0;
}
.wrapper {
max-width: 50rem;
margin-inline: auto;
padding-inline: 1rem;
}
.site-title {
font-size: 3rem;
text-align: center;
}
.section-title {
font-size: 2.25rem;
}
section {
padding-block: 5rem;
}
.diagonal {
--skew-angle: -5deg;
--background: linear-gradient(
45deg,
#12c2e9,
#c471ed,
#f64f59
);
position: relative;
isolation: isolate;
}
.diagonal::after {
content: '';
background: var(--background);
position: absolute;
z-index: -1;
inset: 0;
transform: skewY(var(--skew-angle));
}
.spikes {
--spike-width: 50px;
--spike-height: 10px;
--spike-color: var(--body-bg);
position: relative;
color: black;
background:
linear-gradient(
to right,
#fdc830,
#f37335);
}
.spikes::before,
.spikes::after {
content: '';
position: absolute;
width: 100%;
height: var(--spike-height);
background: var(--spike-color);
-webkit-mask-image: url('assets/triangle.svg');
-webkit-mask-size: var(--spike-width) var(--spike-height);
/* -webkit-mask-repeat: repeat-x; */
mask-image: url('assets/triangle.svg');
mask-size: var(--spike-width) var(--spike-height);
/* mask-repeat: repeat-x; */
}
.spikes::before {
top: 0;
}
.spikes::after {
bottom: 0;
transform: rotate(.5turn);
}
.wavy {
/* mask created with
https://css-generators.com/wavy-shapes/ */
background:
linear-gradient(
to right,
#00f260,
#0575e6);
--mask:
radial-gradient(50.39px at 50% 68.75px,#000 99%,#0000 101%) calc(50% - 50px) 0/100px 51% repeat-x,
radial-gradient(50.39px at 50% -43.75px,#0000 99%,#000 101%) 50% 25px/100px calc(51% - 25px) repeat-x,
radial-gradient(50.39px at 50% calc(100% - 68.75px),#000 99%,#0000 101%) calc(50% - 50px) 100%/100px 51% repeat-x,
radial-gradient(50.39px at 50% calc(100% + 43.75px),#0000 99%,#000 101%) 50% calc(100% - 25px)/100px calc(51% - 25px) repeat-x;
-webkit-mask: var(--mask);
mask: var(--mask);
}