-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
105 lines (87 loc) · 1.66 KB
/
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
* {
background-color: black;
font-family: Helvetica, Arial, sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
margin-top: 80px;
}
section>ol>li {
display: inline-block;
list-style: none;
}
header>h2 {
user-select: none;
}
p.container {
margin-top: 15px;
user-select: none;
}
#sessaoID {
display: inline-block;
text-align: center;
}
#logoID {
margin: 0px 0px 40px 0px;
}
#listID {
width: 20%;
margin: 20px;
}
.CorTitulo {
margin: 75px;
font-size: 2em;
color: white;
}
.container #listID {
color: gray;
height: 200px;
}
.container img {
border-radius: 15px;
height: 200px;
align-items: center;
justify-content: center;
box-sizing: border-box;
}
.container img:hover {
border-radius: 15px;
border: 2px solid rgba(255, 255, 255, 0.952);
height: 200px;
}
.container img:focus {
border-radius: 15px;
border: 2px solid rgba(255, 255, 255, 0.952);
height: 200px;
}
.container #listID:hover {
color: white;
height: 200px;
}
.container #listID:focus {
color: white;
height: 200px;
}
.botaoMargens {
margin-bottom: 40px;
}
.botaoCLASS {
color: white;
background-color: black;
border-radius: 8px;
padding: 15px 55px 15px 55px;
margin-top: 90px;
border: 1px solid rgba(255, 255, 255, 0.637);
}
.botaoCLASS:focus {
background-color: white;
color: black;
transition-duration: 2s;
}
.botaoCLASS:hover {
background-color: white;
color: black;
transition-duration: 0.5s;
}