-
Notifications
You must be signed in to change notification settings - Fork 0
/
Laba1.css
116 lines (87 loc) · 1.47 KB
/
Laba1.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
html, body {
width: 100%;
height: 100%;
}
section {
display: grid;
grid-template-areas:
"box2 box3 box4 box4"
"box2 box3 box5 box6"
"box2 box3 box5 box6";
grid-template-columns: 0.7fr 0.6fr 0.6fr 0.6fr;
grid-column-gap: 120px;
}
header {
display: grid;
grid-template-columns: 1fr 3fr;
background-color: #86c7e3;
}
#phrase12 {
padding: 20px;
text-align: right;
font-size: 40px;
}
.phrase11 {
border: 5px dashed;
align-self: center;
text-align: right;
padding: 10px;
font-size: 30px;
background-color: white;
}
.box2 {
grid-area: box2;
background-color: #ed9ab3;
}
.box3 {
grid-area: box3;
background-color: #91d9bf;
}
.box4 {
text-align: center;
grid-area: box4;
background-color: #ed9ab3;
}
.box5 {
text-align: left;
grid-area: box5;
background-color: #edf2f2;
}
.box6 {
text-align: left;
grid-area: box6;
background-color: #91d9bf;
}
footer {
display: grid;
grid-template-columns: 3fr 1fr;
background-color: #86c7e3;
}
.phrase22 {
font-size: 40px;
}
.phrase21 {
border: 5px dashed;
align-self: center;
text-align: left;
padding: 10px;
font-size: 30px;
background-color: white;
}
p {
font-size: 30px;
padding: 10px;
}
a {
font-size: 30px;
}
#img_billy {
height: 160px;
}
.trdic:nth-of-type(2n) {
background-color: #ed9ab3;
}
.anable_two_columns {
display: grid;
grid-template-columns: 1fr 1fr;
}