-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (77 loc) · 1.29 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
min-height: 100vh;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: #333;
font-family: Arial, Helvetica, sans-serif;
}
h1 {
color: #FFF;
margin: 20px 0;
}
.area {
width: 300px;
display: grid;
grid-template-columns: repeat(3, 1fr);
margin-top: 30px;
}
.area .item {
width: 100px;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
font-size: 60px;
font-weight: bold;
color: #FFF;
cursor: pointer;
}
.item:hover {
background-color: rgba(0, 0, 0, 0.1);
}
.item.t {
border-top: 1px solid #FFF;
}
.item.l {
border-left: 1px solid #FFF;
}
.item.r {
border-right: 1px solid #FFF;
}
.item.b {
border-bottom: 1px solid #FFF;
}
.info {
width: 300px;
display: flex;
margin-top: 30px;
border: 1px dotted #FFF;
padding: 10px;
}
.infoitem {
flex: 1;
}
.infotitulo {
text-align: center;
color: #FFF;
margin-bottom: 10px;
}
.infocorpo {
text-align: center;
color: #FFF;
font-size: 20px;
}
.reset {
border: 1px solid #000;
background-color: rgba(0, 0, 0, 0.2);
color: #FFF;
padding: 10px;
margin-top: 20px;
}