-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (63 loc) · 1.03 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
body {
font-family: arial;
display: flex;
}
body > header {
position: fixed;
/*width: 300px;*/
margin-left: -3px;
}
h1 {
white-space: nowrap;
padding: 7px;
}
header .nav-link {
color: black;
text-decoration: none;
display: block;
/*border: 1px solid black;*/
/*border-collapse: collapse; */
padding: 10px 7px;
white-space: nowrap;
border-bottom: 1px solid black;
}
header .nav-link:first-of-type {
border-top: 1px solid black;
}
header .nav-link:hover {
background-color: rgb(221, 225, 227);
}
main {
margin-left: 235px;
border-left: 1px solid gray;
padding: 8px;
}
p {
text-align: justify;
}
code {
background-color: rgb(230, 235, 240);
padding: 5px;
margin-left: 10px;
display: inline-block;
}
@media only screen and (max-width: 425px) {
body {
display: block;
/*max-width: 100%;*/
/*overflow-x: hidden;
width: 100%;*/
}
body > header {
/*width: 100%;*/
position: static;
text-align: center;
max-width: 100%;
}
main {
margin: 0px;
border-left: none;
}
ul {
padding-left: 16px;
}