forked from full-stack-bcn/p2-typescript-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesList.css
67 lines (56 loc) · 894 Bytes
/
stylesList.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
body {
margin: 50px 0;
font-family: Verdana, sans-serif;
background-color: #262626;
color: white;
font-size: 1.5rem;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
h1{
margin: 70px 0;
}
div.heading {
display: flex;
flex-direction: row;
justify-content: space-between;
font-size: 0.7rem;
margin-bottom: 10px;
}
a {
color: white;
text-decoration: none;
}
a > div {
border-radius: 15px;
margin: 5px 0;
}
.item-name,
.item-goals {
font-size: 2rem;
}
.item-team {
font-size: 0.8rem;
margin-top: 5px;
}
a:hover .item-name {
text-decoration: underline;
}
a:hover > div {
background-color: #3d3d3d;
}
body > div {
width: 60%;
}
body > div > a > div {
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 20px;
}
div.item-col {
display: flex;
flex-direction: column;
}