-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjohnnydmad.css
More file actions
123 lines (106 loc) · 2.15 KB
/
Copy pathjohnnydmad.css
File metadata and controls
123 lines (106 loc) · 2.15 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
body {
background-color: hsl(180, 20%, 25%);
color: hsl(180, 50%, 90%)
}
div.nav {
position: fixed;
width: 10em;
height: 100%;
padding-top: 10em;
}
ul.nav {
list-style-type: none;
margin: 0;
padding: 0;
overflow: auto;
font-family: sans-serif;
font-weight: bold;
font-size: 1.2em;
}
li.nav {
padding-left: 1em;
}
li a.nav-active {
display: block;
padding-left: 0.5em;
padding-right: 0.5em;
padding-bottom: 0.1em;
background-color: hsl(180, 50%, 90%);
color: hsl(180, 20%, 25%);
border: solid 1px #FFF;
border-style: inset hidden hidden hidden;
border-radius: 0.66em;
text-decoration: none;
}
li a.nav-inactive {
display: block;
padding-left: 0.5em;
padding-right: 0.5em;
padding-bottom: 0.1em;
background-color: hsl(40, 20%, 30%);
border: solid 1px #FFF;
border-style: inset hidden hidden hidden;
border-radius: 0.66em;
text-decoration: none;
}
li a.nav-inactive:hover {
background-color: hsl(160, 50%, 30%)
}
.divmain {
text-align: center;
margin-left: 10em;
}
@media (max-width: 55em) {
div.nav {
position: relative;
width: initial;
max-width: 10em;
margin-left: auto;
margin-right: auto;
padding-top: 0;
height: auto;
}
.divmain {
margin-left: 0;
}
}
p {
max-width: 50em;
margin-left: auto;
margin-right: auto;
}
tr {
background-color: hsl(210, 50%, 20%);
/*border-collapse: collapse;*//*
border-bottom: 1px solid #ddd;
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
/*border-radius: 10px;*/
}
td {
border: solid 1px #FFF;
border-style: inset hidden hidden hidden;
padding: 0.1em
}
td:first-child {
border-top-left-radius: 0.66em;
border-bottom-left-radius: 0.66em;
padding-left: 0.66em;
}
td:last-child {
border-top-right-radius: 0.66em;
border-bottom-right-radius: 0.66em;
padding-right: 0.5em;
}
a:link {
color: hsl(160, 75%, 75%);
}
a:visited {
color: hsl(160, 50%, 50%)
}
a:hover {
color: hsl(160, 50%, 90%)
}
a:active {
color: hsl(160, 100%, 85%)
}