-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtetris.css
81 lines (69 loc) · 1.34 KB
/
tetris.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
.text-center {
text-align: center;
}
.flex {
display: flex;
}
.font-weight-bold {
font-weight: bold;
margin-right:40px;
}
.justify-content-center {
justify-content: center;
}
.justify-content-around {
justify-content: space-around;
}
.justify-content-between {
justify-content: space-between;
}
.btn {
display:inline-block;
font-weight:400;
color:#212529;
text-align:center;
vertical-align:middle;
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
background-color:transparent;
border:1px solid transparent;
padding:.375rem .75rem;
font-size:1rem;
line-height:1.5;
border-radius:.25rem;
transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}
.btn-primary {
color:#212529;
background-color:#ffc107;
border-color:#ffc107
}
.btn-info{
color:#fff;
background-color:#17a2b8;
border-color:#17a2b8
}
#grille span {
text-align: center;
float: left;
background-color: #696969;
border: 0.5px #5a5e6b solid;
height: 22px;
width: 22px;
}
#grille {
display: flex;
flex-direction: column;
align-items: center;
margin-right:30px;
}
.bg-commande {
border-radius: 5px;
padding: 5px 50px;
margin-right: 5px;
margin-bottom: 20px;
background-color: #A9A9A9 ;
font-size:0.9em;
}