-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
125 lines (111 loc) · 2.14 KB
/
Copy pathmain.css
File metadata and controls
125 lines (111 loc) · 2.14 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
body{
background-image: url(denim.png);
margin: 0px;
}
.eraser{
clear: both;
}
.mainContainer{
background-color: gray;
width: 900px;
height: 1000px;
margin: auto;
padding: 5px;
}
.commonContainer{
width: 100%;
height: 100px;
background-color: white;
}
.floatContainer{
margin-top: 5px;
margin-right: 5px;
width: 69%;
height: 100px;
background-color: white;
float: left;
}
.secondFloatContainer{
background-color: white;
width: 274px; /*Nie umiem ustawić szerokość dynamicznie przy użyciu float left, jak daje dynamiczne blok spada poniżej */
height: 100px;
margin-top: 5px;
float: left;
}
.groupOfContainers{
margin-top: 5px;
background-color: cadetblue;
width: 69%;
margin-right: 5px;
height: 400px;
float: left;
}
.THICCBOONER{
background-color: white;
margin-top: 5px;
width: 274px;
height: 400px;
float: left;
}
.childContainer{
margin-left: 10px;
margin-right: 10px;
margin-top:40px;
margin-bottom: 10px;
background-color: white;
height: 150px;
width: 290px; /*Prawy child ma o 0.66 więcej miejsca nie użytego */
float: left;
}
.soloChildContainer{
margin-left: 10px;
margin-right: 10px;
margin-top:10px;
margin-bottom: 40px;
background-color: white;
height: 150px;
width 100%;
}
.OlderBrother{
margin-top: 5px;
margin-left: 15px;
background-color: white;
width: 30%;
height: 100px;
float: left;
margin-right: 15px;
}
.MiddleBrother{
margin-top: 5px;
background-color: white;
width: 30%;
height: 100px;
float: left;
margin-left: 15px;
margin-right: 15px;
}
.YoungessBrother{
margin-top: 5px;
margin-left: 15px;
margin-right: 15px;
background-color: white;
width: 30%;
height: 100px;
float: left;
}
.lastOne{
margin-top: 5px;
background-color: white;
width: 445px;
height: 100px;
float: left;
margin-right: 5px;
}
.lastOne1{
margin-top: 5px;
background-color: white;
width: 445px;
height: 100px;
float: left;
margin-left: 5px;
}