-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
159 lines (129 loc) · 2.11 KB
/
index.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
body {
background-color: #ddd;
margin: 0;
}
/* header */
.header {
position: fixed;
top: 0px;
background-color: #111;
color: #eee;
width: 100%;
font-family: Georgia, "Times New Roman";
font-size: 16pt;
text-align: center;
}
.header ul {
margin: 0;
padding: 20px;
}
.header li {
margin: 0;
list-style-type: none;
margin: 0 25px;
display: inline;
}
.home_icon {
width: 48px;
margin: -10px;
position: absolute;
top: 17px;
left: 25px;
}
.header_link:active, .header_link:visited, .header_link:link {
color: inherit;
text-decoration: none;
}
.header_submenu {
font-size: 14pt;
background-color: #203020;
display: none;
}
.header_submenu ul {
margin: 0;
padding: 20px;
}
.header_submenu li {
margin: 0;
list-style-type: none;
margin: 0 25px;
display: inline;
}
.header_submenu_link:active,
.header_submenu_link:visited,
.header_submenu_link:link {
color: inherit;
text-decoration: none;
}
.header_submenu_link:hover {
color: #55aa55;
}
/* WRAPPER */
.wrapper {
width: 800px;
max-width: 90%;
padding: 50px;
background-color: #eee;
margin: 85px auto 0px auto;
}
.wrapper_text_container {
font-size: 15pt;
font-family: Georgia, "Times New Roman";
line-height: 1.5;
text-align: justify;
}
.wrapper_text_container h1 {
font-size: 26pt;
margin-left: 20px;
text-align: left;
}
.wrapper_text_container h2 {
font-size: 22pt;
margin-left: 10px;
text-align: left;
}
.wrapper_text_container h3 {
font-size: 18pt;
text-align: left;
}
.wrapper_text_container li {
margin: 12px 0;
}
.code {
background-color: #ccc;
font-family: Consolas, Monospace, "Courier New";
padding: 15px;
font-size: 12pt;
}
.wrapper_text_container td {
border: 1px solid;
padding: 10px;
}
.wrapper_text_container table {
border: 1px solid;
border-collapse: collapse;
}
.img_right, .img_left {
width: 220px;
margin: 25px;
}
.img_right {
float: right;
}
.img_left {
float: left;
}
.img_center {
display: block;
margin: 25px auto;
}
footer {
margin-top: 40px;
background-color: #aaa;
width: 100%;
padding: 20px;
font-size: 14pt;
font-family: Georgia, "Times New Roman";
text-align: center;
color: #666;
}