-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (50 loc) · 809 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
* {
text-align: center;
}
body {
font-family: "Roboto Mono", monospace;
min-height: 400px;
background-image: url("https://www.alura.com.br/assets/img/imersoes/dev-2021/tabela-classificacao-bg.png");
background-color: #111;
background-size: 100%;
background-position: center;
background-repeat: no-repeat;
}
.container {
text-align: center;
padding: 20px;
height: 100vh;
}
.page-title {
color: #ffffff;
margin: 0 0 5px;
}
.page-subtitle {
color: #ffffff;
margin-top: 5px;
}
.page-logo {
width: 200px;
}
.alura-logo {
width: 40px;
position: absolute;
top: 10px;
right: 10px;
}
table {
border: 2px solid white;
border-collapse: collapse;
}
h1 {
color: white;
}
th,
tr,
td {
border: solid 1px white;
color: white;
}
td > button {
border-radius: 6px;
}