-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathindex.css
More file actions
42 lines (42 loc) · 698 Bytes
/
index.css
File metadata and controls
42 lines (42 loc) · 698 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
*{
margin:0;
padding:0;
box-sizing: border-box;
}
.container{
height: 100vh;
font-weight: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(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.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;
}