forked from RuchiSetti/ZeroOneCodeClub_FirstWebDevProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
50 lines (42 loc) · 719 Bytes
/
index.css
File metadata and controls
50 lines (42 loc) · 719 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
46
47
48
49
50
* {
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(0, 0, 0, 0.35) 0px 5px 15px;
}
.card-two h1 {
font-size: 1.5rem;
}
.card-two h2 {
font-size: 1.2rem;
margin-bottom: 1rem;
color: grey;
}
.card-two a {
text-decoration: none;
background-color: black;
color: white;
padding: 5px 10px;
}