-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (43 loc) · 890 Bytes
/
style.css
File metadata and controls
58 lines (43 loc) · 890 Bytes
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
.commandOption{
text-align: center;
}
.title{
text-align: center;
}
article {
display: inline-grid;
grid-template-rows: 200px 200px 200px;
grid-template-columns: 200px 200px 200px;
grid-gap: 10px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
section {
text-align: center;
display: flex;
justify-content: center;
align-items: center;
border: 6px solid black;
border-radius: 10px;
background-color: #0066ff;
cursor: pointer;
transition: 0.3s;
}
section:hover{
/*-webkit-transform: rotateZ(-30deg);
-ms-transform: rotateZ(-30deg);
transform: rotateZ(-30deg);
transform: translate(30cm);*/
transform: translateY(-0.5cm);
background-color: #00ff40;
}
body {
font-size: 40px;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: #2f2f2f;
}