-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (55 loc) · 967 Bytes
/
style.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
h1{
background-color:rgb(24, 11, 11);
color: white;
text-align: center;
padding:20px 0px;
}
.heading{
text-align: center;
text-decoration: underline;
font-size: 30px;
color: rgb(105, 145, 121);
}
p{
font-size: 20px;
}
.container p::first-letter{
font-size: 50px;
float: left;
}
.container{
max-width: 80vw;
margin: 0 auto;
}
.card{
width: 300px;
min-height: 400px;
/* background-color: grey; */
box-shadow: 0 0 5px 8px rgba(20,20,20,0.15);
}
img{
width: 100%;
}
.card .content-section{
padding: 10px;
}
.card .content-section h3{
color: darkslategrey;
font-size: 30px;
}
button{
outline: none;
border: 2px solid grey;
background-color: transparent;
width: 100%;
padding: 10px 0px;
font-size: 16px;
border-radius: 50px;
}
.cards{
display: flex;
justify-content: center;
flex-direction: row;
gap: 20px;
margin-top: 50px;
}