-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (60 loc) · 1.15 KB
/
Copy pathstyle.css
File metadata and controls
77 lines (60 loc) · 1.15 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
*{
padding: 0;
margin: 0;
box-sizing: border;
}
ul{
list-style-type: none;
}
body{
background-color: hsl(47, 88%, 63%);
padding: 5rem 1rem;
}
.container{
max-width: 500px;
margin-inline: auto;
background-color: white;
padding: 1rem;
border: 1px solid black;
border-radius: 1rem;
box-shadow: 10px 10px 0px black;
}
.container div:first-child img{
width: 100%;
border-radius: 1rem;
}
.container div:nth-child(2) h2{
display: inline-block;
background-color: hsl(47, 88%, 63%);
font-size: 1rem;
padding: 3px 8px;
margin: 1.5rem 0rem 1rem;
border-radius: 3px;
}
.container div:nth-child(2) p.published-at{
margin-bottom: 1rem;
color: black;
}
.container div:nth-child(2) h1{
margin-bottom: 1rem;
}
.container div:nth-child(2) h1:hover{
color: hsl(47, 88%, 63%) ;
cursor: pointer;
}
.container div:nth-child(2) p{
color: #413f3f;
margin-bottom: 2rem;
}
.container div:nth-child(2) ul{
display: flex;
align-items: center;
gap: 0.5rem;
}
.attribution{
font-size: 11px;
text-align: center;
}
.attribution a{
color: hsl(240, 46%, 48%);
}