-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (85 loc) · 1.48 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
/* Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Open Sans', sans-serif;
color: #333;
background-color: #fff;
line-height: 1.6;
}
/* Page Container */
.page-wrapper {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
/* Header */
.doc-header {
text-align: center;
margin-bottom: 30px;
padding-bottom: 10px;
border-bottom: 1px solid #ddd;
}
.doc-title {
font-size: 2em;
font-weight: 600;
color: #222;
}
.meta {
font-size: 0.9em;
color: #777;
margin-top: 5px;
}
.logo {
display: inline-block;
margin-top: 10px;
font-size: 0.85em;
color: #555;
}
/* Section Headings */
.block-title {
font-size: 1.5em;
font-weight: 500;
color: #333;
margin-top: 20px;
padding-bottom: 5px;
border-bottom: 1px solid #ddd;
}
/* Content */
.content {
margin-top: 15px;
}
.content p, .content ul {
margin-bottom: 15px;
color: #444;
}
.content ul {
padding-left: 20px;
}
.content ul li {
margin-bottom: 10px;
list-style-type: disc;
}
/* Links */
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Responsive */
@media (max-width: 600px) {
.doc-title {
font-size: 1.8em;
}
.block-title {
font-size: 1.3em;
}
.content ul {
padding-left: 15px;
}
}