-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
239 lines (179 loc) · 3.66 KB
/
Copy pathstyles.css
File metadata and controls
239 lines (179 loc) · 3.66 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
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
/*
Remove all the styles of the "User-Agent-Stylesheets", except for the 'display' property
- The "symbol *" part is to solve Firefox SVG sprite bug
*/
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
all: unset;
display: revert;
}
/* Preferred box-sizing value */
*,
*::before,
*::after {
box-sizing: border-box;
}
/* Reapply the pointer cursor for anchor tags */
a {
cursor: revert;
}
/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
list-style: none;
}
/* For images to not be able to exceed their container */
img {
max-width: 100%;
}
/* removes spacing between cells in tables */
table {
border-collapse: collapse;
}
/* revert the 'white-space' property for textarea elements on Safari */
textarea {
white-space: revert;
}
/* fix the feature of 'hidden' attribute.
display:revert; revert to element instead of attribute */
:where([hidden]) {
display: none;
}
/* revert for bug in Chromium browsers
- fix for the content editable attribute will work properly. */
:where([contenteditable]) {
-moz-user-modify: read-write;
-webkit-user-modify: read-write;
overflow-wrap: break-word;
-webkit-line-break: after-white-space;
}
/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
-webkit-user-drag: element;
}
/*style*/
body {
font: 16px/28px arial, sans-serif;
background-color: #f2f2f2;
color: #3c3c3c;
}
.container {
width: 960px;
margin: auto;
background-color: beige;
}
.header {
padding: 20px;
padding-bottom: 5px;
}
.header .judul {
font-size: 60px;
font-weight: bold;
}
.header ul li {
display: inline-block;
margin-top: 20px;
margin-right: 10px;
}
.header a {
text-decoration: none;
color: #0066ff;
}
.header a:hover {
background-color: #0052cc;
color: #00b8e6;
}
.hero {
height: 300px;
background-size: cover;
background-position: 0 -230px;
height: 100%;
border-top: 5px solid #3399ff;
border-bottom: 5px solid #00b3b3;
}
.main {
width: 600px;
padding: 20px;
box-sizing: border-box;
float: left;
}
.main h2 {
font-size: 30px;
font-weight: bold;
text-decoration: none;
margin-top: 10px;
color: #00061a;
}
.main .penulis {
font-size: 12px;
margin-top: 7px;
margin-bottom: 10px;
color: #000000;
}
.main .penulis a {
text-decoration: none;
color: #4dc3ff;
}
.main p {
margin-bottom: 20px;
font-size: 14px;
color: #00061a;
}
/* sidebar */
.sidebar {
width: 300px;
float: right;
padding: 20px;
}
.sidebar h3 {
font-weight: bold;
font-size: 16px;
color: #000080;
}
.sidebar img {
width: 90px;
height: 90px;
float: left;
padding-right: 15px;
}
.sidebar p {
font: 12px/18px arial;
}
.footer {
width: 960px;
background-color: #003300;
padding: 15px;
}
.footer .copyright {
color: #ffffff;
text-align: center;
font-size: 14px;
display: block;
}
/* Clearfix */
/**
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
* contenteditable attribute is included anywhere else in the document.
* Otherwise it causes space to appear at the top and bottom of elements
* that are clearfixed.
* 2. The use of `table` rather than `block` is only necessary if using
* `:before` to contain the top-margins of child elements.
*/
.cf:before,
.cf:after {
content: " ";
/* 1 */
display: table;
/* 2 */
}
.cf:after {
clear: both;
}
/**
* For IE 6/7 only
* Include this rule to trigger hasLayout and contain floats.
*/
.cf {
*zoom: 1;
}