-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWelcome.module.css
110 lines (110 loc) · 2.37 KB
/
Welcome.module.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
.welcome {
margin: 3rem 0;
padding: 0 1rem;
}
.welcome_header h1 {
font-size: 3rem;
text-align: center;
font-weight: 900;
background: linear-gradient(90deg, #4CB0F4 0%, #8526FF 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 1.5rem;
}
.welcome_header p {
text-align: center;
max-width: 53rem;
margin: auto;
font-size: 1.25rem;
line-height: 153.52%;
margin-bottom: 3.75rem;
}
.welcome_subheader {
text-align: center;
font-weight: 900;
background: linear-gradient(90deg, #4CB0F4 0%, #8526FF 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 2.25rem;
margin-bottom: 2rem;
}
.welcome_cards {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 2rem;
justify-content: center;
position: relative;
}
.welcome_cards_card {
border: 1px solid #F0F0F0;
box-shadow: 0px 3.2px 7.2px rgba(0, 0, 0, 0.132), 0px 0.6px 1.8px rgba(0, 0, 0, 0.108);
border-radius: 15px;
height: 15rem;
padding: 2rem 3.5rem;
display: flex;
flex-direction: column;
justify-content: center;
margin: auto;
transition: 100ms ease-in-out;
}
.welcome_cards_card:hover {
box-shadow: 0px 6.4px 14.4px rgba(0, 0, 0, 0.132), 0px 1.2px 3.6px rgba(0, 0, 0, 0.108);
transform: scale(1.02);
}
.welcome_cards_card h3 {
text-align: center;
font-weight: 900;
background: linear-gradient(90deg, #4CB0F4 0%, #8526FF 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 2rem;
margin-top: 0;
margin-bottom: 1rem;
}
.welcome_cards_card p {
text-align: center;
font-size: 1rem;
line-height: 153.52%;
margin: 0;
}
.welcome_cards_card p ul {
list-style-position: inside;
padding-left: 0;
margin: 0;
}
@media (max-width: 1023.98px) {
.welcome_cards_card {
width: 100%;
padding: 1rem
}
}
@media (max-width: 767.98px) {
.welcome_cards_card {
height: 100%;
}
.welcome_header h1 {
font-size: 2.5rem;
}
.welcome_subheader {
font-size: 2rem;
}
.welcome_cards_card h3 {
font-size: 1.75rem;
}
}
@media (max-width: 639.98px) {
.welcome_cards {
grid-template-columns: repeat(1, 1fr);
}
.welcome_cards_card {
width: 100%;
max-width: 34rem;
margin: auto;
padding: .5rem;
height: auto;
min-height: 15rem;
}
}