forked from kontur-web-courses/article-markup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
112 lines (94 loc) · 1.65 KB
/
styles.css
File metadata and controls
112 lines (94 loc) · 1.65 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
html,
body {
margin: 0;
}
main {
width: 700px;
display: flex;
margin: 0 auto;
flex-direction: column;
}
/* HEADER */
.header_logo {
margin: 10px 0px 10px 38px;
}
.header_menu {
background-color: lightgray;
margin: 0;
border-left: none;
border-right: none;
border: 1px black solid;
}
.header_menu_item {
list-style: none;
padding-right: 15px;
}
.header_menu_item {
font-family: LucidaGrande;
display: inline;
font-size: 24px;
color: #333333;
text-align: left;
line-height: 36px;
text-decoration: none;
cursor: pointer;
}
.header_menu_item_link {
text-decoration: none;
}
.header_menu_item_link:hover {
text-decoration: underline;
}
.header_menu_item_link:visited {
color: red;
}
/* MAIN */
.title {
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva,
Arial, sans-serif;
margin-bottom: 10px;
}
.simple_text {
margin-top: 0;
margin-bottom: 0;
font-family: Georgia, Cambria, "Times New Roman", Times, serif;
font-size: 21px;
line-height: 33px;
}
.title,
.simple_text {
color: rgba(0, 0, 0, 0.84);
text-align: left;
}
.text_block {
margin-bottom: 30px;
}
h1 {
font-size: 42px;
line-height: 44px;
}
h2 {
font-size: 34px;
line-height: 39px;
}
code {
font-family: "Courier New", monospace;
background-color: rgb(242, 242, 242);
color: rgb(96, 96, 96);
}
@media (max-width: 800px) {
h1 {
font-family: LucidaGrande-Bold;
font-size: 26px;
color: rgba(0, 0, 0, 0.84);
text-align: left;
line-height: 28px;
}
h2 {
font-family: LucidaGrande-Bold;
font-size: 22px;
color: rgba(0, 0, 0, 0.84);
text-align: left;
line-height: 39px;
}
}