-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
67 lines (60 loc) · 995 Bytes
/
index.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
67
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body{
background-color:#F5D04E;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100wh;
}
.container{
padding: 20px;
display: flex;
background-color: #fff;
flex-direction: column;
border-radius: 20px;
box-shadow: 10px 10px 0px 0px black;
row-gap:20px;
}
.container > img{
width: 100%;
height: 40%;
border-radius: 10px;
}
button{
background-color:#F5D04E ;
color: black;
border-radius: 6px;
border: none;
font-weight: 800;
padding: 10px;
width: 80px;
}
p{
color: rgba(0, 0, 0, 0.465);
line-height: 1.5;
font-size: 16px;
}
h2{
color: #F5D04E;
}
.author{
display: flex;
align-items: center;
margin-top: 20px;
}
.author img{
width: 30px;
height: 30px;
border-radius: 50%;
}
.author span{
font-size: 12px;
font-weight: bold;
color:#333;
}