-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (100 loc) · 1.76 KB
/
Copy pathstyle.css
File metadata and controls
113 lines (100 loc) · 1.76 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
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
/* purgecss start ignore */
@tailwind base;
/* purgecss end ignore */
@tailwind components;
@tailwind utilities;
@layer base {
/* GENERAL */
html,
body,
#__next {
@apply m-0 h-full;
}
a {
@apply text-black font-medium;
}
.backdrop {
position: fixed;
background-color: rgba(0, 0, 0, 0.7);
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.modal {
background-color: white;
position: absolute;
left: 0;
right: 0;
border-radius: 8px;
}
/* HEADINGS */
h1 {
@apply text-7xl;
}
h2 {
@apply text-6xl;
}
h3 {
@apply text-5xl;
}
h4 {
@apply text-4xl;
}
h5 {
@apply text-3xl;
}
h6 {
@apply text-2xl;
}
/* COMPONENTS */
.btn {
@apply rounded flex items-center justify-center bg-gradient-to-r from-brand1 to-brand2 text-white font-semibold px-4 py-2 transition-opacity duration-300 transform hover:opacity-80;
}
.btn > * {
@apply text-white font-medium;
}
.box {
@apply bg-tile px-6 py-4 rounded;
}
/* FEATURES */
.sp-input {
background: none;
}
.sp-input:focus {
outline: none;
}
.donutSpinner {
display: inline-block;
border: 4px solid #f4efef;
border-left-color: #f51b6b;
border-radius: 50%;
width: 40px;
height: 40px;
animation: donut-spin 1.2s linear infinite;
}
.donutSpinner.smallSpinner {
width: 24px;
height: 24px;
}
@keyframes donut-spin {
to {
transform: rotate(1turn);
}
}
.fade {
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
display: block;
width: 100%;
height: 150px;
background-image: linear-gradient(
to bottom,
rgba(255, 255, 255, 0.4),
rgba(255, 255, 255, 1) 100%
);
filter: blur(50%);
}
}