-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleTables.css
93 lines (83 loc) · 1.66 KB
/
styleTables.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
84
85
86
87
88
89
90
91
92
93
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
header {
height: 50px;
background-color: lightgray;
display: flex;
align-items: center;
justify-content: space-between;
}
header img{
width: 40px;
border: 1px solid black;
border-radius: 100%;
background-color: white;
margin-left: 5px;
}
header h1{
color: white;
text-shadow: 1px 1px black;
font-family: 'Oleo Script Swash Caps', cursive;
font-size: 3rem;
padding-top: 5px;
margin-left: 5px;
}
header a{
text-decoration: none;
}
#btnlogout{
margin-right: 5px;
font-size: 1.25rem;
color: black;
text-decoration: none;
border: 1px solid black;
border-radius: 10px;
background-color: #fff;
padding: 5px;
font-weight: bold;
}
#btnlogout:hover{
box-shadow: 2px 2px 5px #838383,
-2px -2px 5px #777676;
}
#resetLocalStorage{
margin-left: 35%;
width: 30%;
background-color: red;
color: white;
font-weight: bold;
border-radius: 10px;
line-height: 30px;
margin-top: 5px;
}
main{
border: 1px solid black;
width: 80%;
height: 700px;
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(4, 1fr);
align-items: center;
grid-gap: 5%;
text-align: center;
line-height: 100px;
font-size: 2rem;
}
.table{
max-width: 100px;
max-height: 100px;
min-height: 100px;
background-image: url('./Images/tablelivre.png');
background-size: contain;
}
.busy{
background-image: url('./Images/tablebusy.png');
}
@media (max-width: 500px){
main{
grid-template-columns: repeat(3, 1fr);
}
};