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
134 lines (109 loc) · 2.07 KB
/
Copy pathstyles.css
File metadata and controls
134 lines (109 loc) · 2.07 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
126
127
128
129
130
131
132
133
134
h1, h2 h3, h3 h4, h5, h6 {
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Arial, sans-serif;
font-size: 42px;
color: rgba(0, 0, 0, 0.84);
text-align: left;
line-height: 44px;
margin: 10px;
}
p {
font-family: Georgia, Cambria, "Times New Roman", Times, serif
}
code {
font-family: "Courier New", monospace;
}
.head {
ul {
display: flex;
flex-direction: row;
list-style: none;
padding: 20px 38px;
background-color: whitesmoke;
border: solid #333333;
border-right-width: 0px;
border-left-width: 0px;
gap: 30px;
}
li a {
color: #333333;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Arial, sans-serif;
line-height: 36px;
font-size: 24px;
}
li .red_text {
color: #d0021b;
}
}
li a:hover {
text-decoration: underline;
}
article {
max-width: 700px;
margin: auto;
}
code {
font-family: "Courier New", monospace;
}
p {
font-family: Georgia, Cambria, "Times New Roman", Times, serif;
font-size: 21px;
color: rgba(0, 0, 0, 0.84);
text-align: left;
line-height: 33px;
margin: 10px;
}
section {
margin-bottom: 55px;
margin-top: 0;
}
section > h2 {
margin-top: 55px;
margin-bottom: 10px;
}
.logo {
width: 101px;
height: 64px;
}
img {
max-width: 700px;
width: 100%;
height: auto;
}
section img {
margin-top: 43px;
margin-bottom: 37px;
}
.hand {
width: 23px;
height: auto;
margin-left: -30px;
margin-bottom: -20px;
}
@media (max-width: 800px) {
.logo {
margin-left: 20px;
}
nav ul {
flex-direction: column;
padding-left: 20px;
}
nav ul li {
padding: 0px;
margin: 5px 0px 5px 0px;
font-size: 20px;
}
.content {
width: 90%;
}
img {
width: 100%;
}
p {
font-size: 18px;
line-height: 22px;
}
h1 {
font-size: 26px;
line-height: 28px;
}
}