forked from RuchiSetti/ZeroOneCodeClub_FirstWebDevProject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpro.css
51 lines (42 loc) · 719 Bytes
/
pro.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
* {
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: 50%;
}
.card-two{
width: 50%;
padding: 1rem;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.card-two h1{
font-size: 1.5rem;
}
.card-two h2{
font-size: 1rem;
margin-bottom: 1rem;
}
.card-two a{
text-decoration: none;
background-color: bisque;
color: chocolate;
padding: 5px 9px;
}