-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
114 lines (88 loc) · 1.74 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
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
*:not(:ul li):not(:ol li) {
padding: 0;
}
body {
font: 16px 'Roboto';
}
.conteiner {
width: 620px;
margin: 0 auto;
padding: 0 20px;
}
.header {
padding: 20px 0;
}
.header img {
width: 150px;
height: 150px;
border-radius: 50%;
}
.photo,
.author {
display: inline-block;
}
.author {
margin-left: 15px;
vertical-align: top;
}
.info_box span {
color: #95a5a6
}
/* задаем свойства заголовку */
h3 {
text-align: center;
color: #2c3e50;
}
/* задаем свойства горизонтальной линии */
hr {
border: none;
color: #eee;
background-color: #eee;
height: 1px;
}
/* задаем свойства тексту */
p {
text-align: left;
color: #34495e;
}
a {
text-decoration: none;
color: #3498db;
}
img.intextalign{
width: 620px;
height:auto;
}
img {
display: inline-block;
vertical-align: middle;
padding-right: 5px;
}
.contacts {
text-align: right;
}
/* Свойства списка */
ul {
list-style-type: square;
}
ul li, ol li {
line-height: 1.5;
}
ol {
list-style-type: circle
}
/* Колонки таблицей */
TABLE {
width: 600px; /* Ширина таблицы */
border-bottom: 2px solid #ffffff; /* Линия внизу таблицы */
background: #ffffff; /* Цвет фона таблицы */
}
TH {
background: #ffffff; /* Цвет фона заголовка */
color: black; /* Цвет текста */
text-align: left; /* Выравнивание по левому краю */
}
TD, TH {
vertical-align: top;
padding: 3px; /* Поля вокруг текста */
}