-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetstarted.css
47 lines (46 loc) · 1.02 KB
/
getstarted.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
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;700&family=Lilita+One&family=Poppins:wght@400;700;800&family=Quicksand:wght@400;500&display=swap');
#title {
color: #f9dc5c;
margin: 1rem;
font-size: 35px;
font-family: 'Poppins', sans-serif;
font-weight: 800;
}
.parent{
display: grid;
place-content: center;
}
.container {
/* background: linear-gradient(241deg,#3a506b,#075348,#1c2541); */
width: 100%;
height: 80vh;
color: white;
display: grid;
gap: 10px;
grid-template-columns: 3fr 3fr;
grid-template-rows: 2fr 5fr fr;
padding: 12px 15px;
}
.i-card{
width: 100px;
height: 100px;
position: relative;
margin: 1rem;
}
.cards{
background: white;
border-radius: 12px;
color: black;
overflow: hidden;
transition: 0.2s ease-in-out;
}
.ss {
margin: 1rem;
}
.cards:hover{
scale: 1.02;
box-shadow: 0px 2px 8px 2px rgb(37, 83, 83);
}
#home {
color: white;
}