-
Notifications
You must be signed in to change notification settings - Fork 0
/
tick_cuadraditos.css
62 lines (56 loc) · 1.06 KB
/
tick_cuadraditos.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
body{
margin:0;
padding:0;
}
.grid {
margin:auto;
display: grid;
grid-template-rows: repeat(4, 5rem);
grid-template-columns: repeat(8, 5rem);
transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
}
.grid_item {
display: flex;
align-items: center;
justify-content: center;
}
.grid_item1 {
background-color: #009BB1;
}
.grid_item2 {
background-color: #EE8C1D;
grid-column: 1;
}
.grid_item3 {
background-color: #05368C;
grid-column: 1;
}
.grid_item4 {
background-color: #009135;
grid-column: 1;
}
.grid_item5 {
background-color: #E22961;
}
.grid_item6 {
background-color: #5C66A5;
}
.grid_item7 {
background-color: #FCCC29;
}
.grid_item8 {
background-color: #62B9E4;
}
.grid_item9 {
background-color: #E1261C;
}
.grid_item10 {
background-color: #95C022;
}
.grid_item11 {
background-color: #911C7F;
}