-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
73 lines (65 loc) · 1.28 KB
/
style.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
body{
margin: auto ;
width: 60% ;
}
.container{
display: grid ;
grid-template-columns: repeat(4,1fr) ;
grid-template-rows: 100px 1fr 60px ;
grid-gap: 10px ;
}
#grid_logo{
grid-column: 1 ;
grid-row: 1 ;
border-style: solid ;
background-color: lightskyblue ;
height: 100px ;
}
#grid_logo img{
height: 100px;
}
#grid_titre{
grid-column: 2/5 ;
grid-row: 1 ;
border-style: solid ;
background-color: lightgoldenrodyellow ;
height: 100px;
text-align: center ;
}
#grid_categories{
grid-column: 1 ;
grid-row: 2 ;
border-style: solid ;
background-color: yellow;
}
#grid_categories table{
border-collapse: collapse ;
margin-left: 10px ;
}
#grid_categories tr{
border-style: solid none ;
border-width: 1px ;
}
#grid_trucs{
grid-column: 2/4;
grid-row: 2 ;
border-style: solid;
background-color: cornflowerblue ;
margin-left: 10px ;
border-collapse: collapse ;
}
#grid_add_truc{
grid-column: 4 ;
grid-row: 2 ;
border-style: solid;
background-color: rgb(237, 223, 100) ;
margin-left: 10px ;
border-collapse: collapse ;
}
#grid_footer{
grid-column: 1/5 ;
grid-row: 3 ;
border-style: solid ;
background-color: lawngreen ;
text-align: center ;
}