-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
72 lines (67 loc) · 1.25 KB
/
styles.css
File metadata and controls
72 lines (67 loc) · 1.25 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
body {
background-color: #181818;
color: #ccc;
padding-left: 300px;
padding-right: 300px;
font-size: 1.1rem;
font-size: normal;
line-height: 1.6rem;
margin: 0;
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
Bitstream Vera Sans Mono, Courier New, monospace, serif;
word-wrap: break-word;
}
html,
body {
width: 100%;
height: 100%;
}
a {
cursor: pointer;
color: #ff2e88;
text-decoration: none;
border-bottom: 1px solid #ff2e88;
}
a:hover {
background-color: #ccc;
color: #fff;
}
ul {
list-style-type: none; /* remove default list styles */
}
li {
position: relative;
display: block;
padding-left: 20px;
}
li::before {
content: "\2022";
display: inline-block;
width: 1em;
margin-left: -1em;
position: absolute;
}
* {
box-sizing: border-box;
text-rendering: geometricPrecision;
}
/* Mobile styles */
/* Mobile styles */
@media (max-width: 768px) {
body {
padding-left: 2%;
padding-right: 2%;
text-align: center;
}
.sidebar {
display: none;
}
.content picture img {
width: 400px;
height: auto;
}
ul {
text-align: left; /* Reset text alignment for unordered lists */
padding-left: 0; /* Remove left padding for unordered lists */
}
}