-
Notifications
You must be signed in to change notification settings - Fork 0
/
site.css
executable file
·66 lines (65 loc) · 1.09 KB
/
site.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
body {
margin: 0px 0px 0px 0px;
padding: 0px;
font-family: Verdana,Helvetica,Arial,sans-serif;
background-color: white;
}
ul.navbar {
list-style-type: none;
margin: 0px;
padding: 6px 0px 6px 0px;
}
ul.navbar li {
display: inline;
}
ul.navbar li a {
font-weight: bold;
color: white;
background-color: gray;
text-align: center;
padding: 6px;
margin: 6px;
text-decoration: none;
border-style: solid;
border-width: 3px;
border-color: black;
outline-style: solid;
outline-width: 5px;
outline-color: black;
}
ul.navbar li a:hover,ul.navbar li a:active {
background-color: green;
}
ul.navbar li a.shown {
border-color: red;
}
div.main {
float: left;
max-width: 342px;
padding: 0px 40px 0px 20px;
}
div.books,div.softwares {
float: left;
margin: 100px 6px 0px 6px;
padding: 0px 6px;
border-style: solid;
border-color: black;
border-width: 2px;
background-color: gray;
color: white;
}
div.books {
clear: right;
}
div.books a,div.softwares a {
color: white;
}
div.books a:visited,div.softwares a:visited {
text-decoration: none;
}
div.books a:hover,div.softwares a:hover {
text-decoration: underline;
}
div.valid {
float: left;
}