-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (61 loc) · 883 Bytes
/
style.css
File metadata and controls
71 lines (61 loc) · 883 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;900&display=swap");
body {
font-family: "Roboto", sans-serif;
background-color: #001;
color: #eeeeff;
margin: 0;
height: 100%;
}
h1 {
margin: 5rem;
font-weight: 100;
font-size: 5rem;
}
.container {
display: flex;
/*flex-direction: row-reverse;*/
padding: 1rem;
justify-content: space-between;
flex-wrap: wrap;
align-items: center;
}
.box1,
.box2,
.box3,
.box4,
.box5,
.box6 {
padding: 1rem;
background-color: #223;
text-align: center;
margin: 1rem;
transition: ease-in-out 0.6s;
}
.box1 {
flex: 1;
}
.box2 {
flex: 2;
}
.box3 {
flex: 3;
}
.box4 {
flex: 4;
}
.box5 {
flex: 5;
}
.box6 {
flex: 6;
}
.box1:hover,
.box2:hover,
.box3:hover,
.box4:hover,
.box5:hover,
.box6:hover {
transition: ease-in-out 0.5s;
transform: rotateZ(10deg);
cursor: grab;
}