-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (71 loc) · 984 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
* {
font-family: sans-serif;
background-color: black;
}
header {
margin: 60px;
color: white;
}
header h1 {
text-transform: uppercase;
}
header h1, header p {
text-align: center;
}
#conteudo {
margin-left: auto;
margin-right: auto;
display: block;
width: 100%;
}
.card {
display: inline-block;
vertical-align: top;
max-height: 100%;
}
.card img {
display: block;
}
summary:hover {
background-color: #000029;
cursor: pointer;
}
.card details {
width: 252px;
height: auto;
display: inline-block;
}
.card details summary {
font-size: 18px;
padding: 10px;
}
.card details p {
padding: 10px;
}
.alegria {
color: yellow;
}
.raiva {
color: red;
}
.tristeza {
color: lightblue;
}
.medo {
color: rgb(139, 139, 202);
}
.nojinho {
color: lightgreen;
}
.ansiedade {
color: orange;
}
.tedio {
color: purple;
}
.inveja {
color: turquoise;
}
.vergonha {
color: pink;
}