-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
50 lines (40 loc) · 1.32 KB
/
Copy pathstyles.css
File metadata and controls
50 lines (40 loc) · 1.32 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
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import 'tailwindcss';
@theme {
--font-raleway: 'Raleway', sans-serif;
--color-buttonblue: #745cf9;
--color-shapelyshale: #041015;
--color-shapelylight: #8c979e;
}
@layer components {
.text-preset-h1 {
@apply font-light tracking-normal leading-10 text-[2rem] md:leading-16 md:text-6xl text-white text-center;
}
.text-preset-h2 {
@apply font-light tracking-normal leading-8 text-2xl md:text-3xl md:leading-9 text-shapelyshale text-left;
}
.text-preset-h2-light {
@apply font-light tracking-normal leading-8 text-2xl md:text-3xl md:leading-9 text-white text-left;
}
.text-preset-h3 {
@apply font-light tracking-normal leading-6 text-xs md:text-sm text-white text-center;
}
.text-preset-p {
@apply font-light text-xs tracking-normal leading-6 md:text-sm text-shapelylight text-left;
}
.text-preset-p-light {
@apply font-light text-xs tracking-normal leading-6 md:text-sm text-white;
}
.text-preset-button {
@apply font-bold text-xs tracking-[1px] leading-6 text-white text-center;
}
.text-menu {
@apply font-medium text-sm tracking-[-1px] leading-13;
}
.attribution {
@apply text-sm my-6 text-center;
}
.attribution a {
@apply text-blue-800;
}
}