-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
45 lines (41 loc) · 725 Bytes
/
index.css
File metadata and controls
45 lines (41 loc) · 725 Bytes
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
*{
padding:0;
margin:0;
box-sizing:border-box;
}
.container{
height: 100vh;
width:100%;
display:flex;
align-items:center;
justify-content:center;
}
.card{
width:20%;
display:flex;
flex-direction:column;
}
.card-one{
width:100%;
}
.card-one img{
width:100%;
}
.card-two{
width:100%;
padding:1rem;
box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
.card-two h1{
font-size:1.5rem;
}
.card-two h2{
font-size:1.2rem;
margin-bottom:1rem;
}
.card-two a{
text-decoration:none;
background-color:black;
color:white;
padding:5px 10px;
}