-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobals.css
122 lines (104 loc) · 1.81 KB
/
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
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
122
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--gradient: linear-gradient(157deg, rgba(146, 8, 214, 1) 40%, rgba(0, 134, 255, 1) 100%);
--black: #000000;
--white: #ffffff;
--gray: #bdbdbd;
--purple: #9208d6;
--purple-dark: #660c93;
--blue: #0086ff;
--blue-light: #4aa5f5;
--blue-dark: #0c65b5;
}
html,
body {
padding: 0;
margin: 0;
background: rgb(146, 8, 214);
background: var(--gradient);
background-size: 100%;
background-repeat: no-repeat;
color: var(--white);
height: max-content;
}
*{
box-sizing: border-box;
font-family: "Montserrat", sans-serif;
}
main.flex{
overflow-y: hidden !important;
}
h1{
font-size: 56px;
font-weight: 700;
line-height: 1.25;
}
h2{
font-size: 45px;
font-weight: 700;
line-height: 1.25;
}
h3{
font-size: 36px;
font-weight: 700;
line-height: 1.25;
}
h4{
font-size: 24px;
font-weight: 700;
line-height: 1.25;
}
p{
font-size: 20px;
font-weight: 400;
line-height: 1.25;
}
.pt-5{
padding: 20px;
}
footer {
width: 100%;
bottom: 0;
text-align: center;
}
.home-footer{
margin-top: -170px;
}
.bg-white{
background-color: var(--white);
width: fit-content;
max-width: 600px;
padding: 25px;
border-radius: 20px;
margin: 0 20px 20px;
}
.bg-white.home{
margin-top: 40px;
color: var(--black);
text-align: center;
}
.bg-white.home button{
margin-top: 40px;
background-color: var(--purple);
color: var(--white);
padding: 20px 40px;
border-radius: 16px;
}
.bg-white.home button:hover{
background-color: var(--purple-dark);
}
.absolute{
position: absolute;
bottom: 0;
}
@media(max-width: 470px){
.p-12{
padding: 15px !important;
}
.bg-white{
width: 100%;
}
}