-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (91 loc) · 1.79 KB
/
Copy pathstyle.css
File metadata and controls
109 lines (91 loc) · 1.79 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
padding: 50px 0;
}
.main {
font-family: 'StratosSkyeng', sans-serif;
background-color: #D6D3CA;
width: 1200px;
padding: 40px 53px;
margin: auto;
box-shadow: 1px 1px 5px 1px grey;
}
.header {
margin-bottom: 42px;
border-top: 4px black;
border-bottom: 4px solid black;
text-align: center;
}
.header-date {
text-align: right;
font-size: 36px;
}
.header-title {
font-size: 96px;
font-style: italic;
text-transform: uppercase;
}
.content {
padding: 30px 51px;
border: 4px solid black;
margin-bottom: 37px;
}
.content-title {
font-size: 64px;
font-style: italic;
text-align: center;
margin-bottom: 55px;
}
.content-table {
display: table;
border-collapse: separate;
box-sizing: border-box;
text-indent: initial;
unicode-bidi: isolate;
border-spacing: 2px;
border-color: gray;
}
.table-row {
vertical-align: top;
}
.table-data {
padding-right: 27px;
}
.table-data-text,
.table-data-text-last {
font-size: 24px;
}
.table-data-text {
margin-bottom: 41px;
}
img {
width: 483px;
height: 550px;
}
.advert-title {
font-size: 36px;
font-style: italic;
font-weight: normal;
border: 4px solid black;
border-left: 0;
border-right: 0;
text-align: center;
}
.adverts {
list-style-type: none;
margin-top: 20px;
}
.advert-item {
display: inline-block;
vertical-align: top;
width: 347px;
margin-right: 22px;
}
/* :last-of-type - это псевдокласс, который выбирает самый последний элемент из всех элементов одного типа (соседних) */
.advert-item:last-of-type {
margin-right: 0;
}