-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
129 lines (113 loc) · 2.82 KB
/
styles.css
File metadata and controls
129 lines (113 loc) · 2.82 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
.container {
margin-left: 20px;
}
.sub-container1 {
display: grid;
grid-template-columns: 140px 55px 84px;
grid-template-rows: 45px 45px 45px 120px 60px;
background: url('./images/chemistry.jpg');
background-size: 280px 137px;
background-repeat: no-repeat;
border: 1px solid black;
width: 280px;
border-radius: 5px;
margin-bottom: 15px;
}
.sub-container2 {
display: grid;
grid-template-columns: 140px 55px 84px;
grid-template-rows: 45px 45px 45px 120px 60px;
background: url('./images/physics.jpg');
background-size: 280px 137px;
background-repeat: no-repeat;
border: 1px solid black;
width: 280px;
border-radius: 5px;
}
.sub-container3 {
display: grid;
grid-template-columns: 140px 55px 84px;
grid-template-rows: 45px 45px 45px 120px 60px;
background: url('./images/webdevelopment.jpg');
background-size: 280px 137px;
background-repeat: no-repeat;
border: 1px solid black;
width: 280px;
border-radius: 5px;
}
.sub-container4 {
display: grid;
grid-template-columns: 140px 55px 84px;
grid-template-rows: 45px 45px 45px 120px 60px;
background: url('./images/environnment.jpg');
background-size: 280px 137px;
background-repeat: no-repeat;
border: 1px solid black;
width: 280px;
border-radius: 5px;
}
.sub-container5 {
display: grid;
grid-template-columns: 140px 55px 84px;
grid-template-rows: 45px 45px 45px 120px 60px;
background: url('./images/computer.jpg');
background-size: 280px 137px;
background-repeat: no-repeat;
border: 1px solid black;
width: 280px;
border-radius: 5px;
}
.sub-container6 {
display: grid;
grid-template-columns: 140px 55px 84px;
grid-template-rows: 45px 45px 45px 120px 60px;
background: url('./images/maths.jpg');
background-size: 280px 137px;
background-repeat: no-repeat;
border: 1px solid black;
width: 280px;
border-radius: 5px;
}
.sub-container7 {
display: grid;
grid-template-columns: 140px 55px 84px;
grid-template-rows: 45px 45px 45px 120px 60px;
background: url('./images/english.jpg');
background-size: 280px 137px;
background-repeat: no-repeat;
border: 1px solid black;
width: 280px;
border-radius: 5px;
}
.sub-container8 {
display: grid;
grid-template-columns: 140px 55px 84px;
grid-template-rows: 45px 45px 45px 120px 60px;
background: url('./images/architecture.jpg');
background-size: 280px 137px;
background-repeat: no-repeat;
border: 1px solid black;
width: 280px;
border-radius: 5px;
}
.i1 {
grid-area: 1/1/2/3;
}
.i3 {
grid-area: 2/1/3/4;
}
.i4 {
grid-area: 3/1/4/4;
}
.i5 {
grid-area: 4/1/5/4;
}
.i6 {
border-top: 1px solid black;
}
.i7 {
border-top: 1px solid black;
}
.i8 {
border-top: 1px solid black;
}