-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
82 lines (70 loc) · 1.35 KB
/
index.css
File metadata and controls
82 lines (70 loc) · 1.35 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
.attribution { font-size: 11px; position: absolute; bottom: 0px; left: 0px;}
.attribution a { color: hsl(228, 45%, 44%); }
body{
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background-color: hsl(47, 88%, 63%);
font-family: Figtree, Arial;
font-size: 14px;
color: hsl(0, 0%, 7%);
margin: 0px;
}
.container{
background-color: hsl(0, 0%, 100%);
width: 350px;
display: flex;
flex-direction: column;
padding: 20px;
border-radius: 20px;
box-shadow: 7px 7px 0px rgba(0, 0, 0, 1);
border-color: hsl(0, 0%, 7%);
border-style: solid;
border-width: 2px;
}
.blog-illustration{
width: 100%;
border-radius: 13px;
margin-bottom: 24px;
}
.blog-type{
background-color: hsl(47, 88%, 63%);
text-align: left;
padding: 7px;
padding-left: 10px;
padding-right: 10px;
border-radius: 5px;
display: flex;
justify-content: center;
font-weight: bold;
width: 20%;
margin-bottom: 17px;
}
.blog-title{
font-size: 26px;
cursor: pointer;
transition: 0.15s;
}
.blog-title:hover{
color: hsl(47, 88%, 63%);
}
.blog-description{
color: hsl(0, 0%, 50%);
font-size: 16px;
line-height: 25px;
margin-bottom: 22px;
}
.author{
display: flex;
align-items: center;
height: 34px;
margin-bottom: 10px;
}
.author-picture{
height: 100%;
margin-right: 10px;
}
.author-name{
font-weight: bold;
}