-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle2.css
More file actions
executable file
·123 lines (101 loc) · 1.79 KB
/
style2.css
File metadata and controls
executable file
·123 lines (101 loc) · 1.79 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
* {
font-size : 13px;
}
body {
font-family : freemono, fixed;
margin : 0;
padding : 0 0 30px 0;
background-color : black;
color : #888;
background-image: url(none);
background-position: center center;
/*background-repeat: repeat-y ;*/
/*background-position: center;*/
}
div#footer {
position : absolute;
bottom : 0;
left : 0;
width : 100%;
height : 30px;
border-top : 3px solid #888;
}
@media screen {
body>div#footer{
position : fixed;
z-index : 10;
background-color: black;
}
}
* html body {
overflow : hidden;
}
div#content {
font-family : freemono, fixed;
font-size : 15px;
overflow : auto;
margin-bottom : 30px;
margin-top : 110px;
padding-left : 10px;
z-index : 10;
color: white;
}
div#header {
position : absolute;
font-family : freemono, fixed, bold;
font-size : 30px;
top : 10;
left : 2;
width : 100%;
height : 100px;
border-bottom : 2px solid blue;
background-image: url(image/tux.png);
background-repeat: no-repeat;
background-position: right;
}
@media screen {
body>div#header {
position : fixed;
/* z-index : 10; */
background-color: black;
}
}
.headitem {
text-align : right;
margin-right : 0;
padding-left : 10px;
padding-right : 10px;
color: #00FF00;
}
td.listcell {
padding-left : 10px;
}
h2 {
font-family : freemono, fixed;
font-size : 25px;
padding : 3px;
color: #AA0000;
}
h3 {
font-family : freemono, fixed;
font-size : 20px;
padding : 3px;
color : #AA0000
}
a:link, a:visited, a:active {
color : white;
text-decoration : none;
}
a:hover {
color : #0000FF;
font-size : 15px;
}
input, textarea, select {
background-color : black;
color : #888;
border : 1px solid blue;
}
input:hover, textarea:hover, select:hover {
background-color : #080808;
color : #800;
}