-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbase.css
More file actions
124 lines (116 loc) · 2.1 KB
/
base.css
File metadata and controls
124 lines (116 loc) · 2.1 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
124
.nav {
width: 100%;
margin-bottom: 20px;
}
.nav ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
.nav li {
display: inline;
text-align: center;
padding: 4px 4px 0 0;
text-decoration: none;
}
.welcome-msg {
font-family: 'Audiowide';
font-size: 24px;
padding-right: 30px;
-webkit-animation: blink_blink 10s infinite;
animation: blink_blink 10s infinite;
}
@-webkit-keyframes blink_blink {
0% { color: black; }
50% { color: red; }
100% { color: black; }
}
a:visited{
color:blue;
}
a:hover{
color:orange;
}
/* tables */
table.tablesorter {
font-family:arial;
background-color: #CDCDCD;
margin:10px 0pt 15px;
font-size: 8pt;
width: 100%;
text-align: left;
}
table.tablesorter thead tr th, table.tablesorter tfoot tr th {
background-color: #e6EEEE;
border: 1px solid #FFF;
font-size: 8pt;
padding: 4px;
}
table.tablesorter thead tr .header {
background-image: url(../img/bg.gif);
background-repeat: no-repeat;
background-position: center right;
cursor: pointer;
}
table.tablesorter tbody td {
color: #3D3D3D;
padding: 4px;
background-color: #FFF;
vertical-align: top;
}
table.tablesorter tbody tr.odd td {
background-color:#F0F0F6;
}
table.tablesorter thead tr .headerSortUp {
background-image: url(../img/asc.gif);
}
table.tablesorter thead tr .headerSortDown {
background-image: url(../img/desc.gif);
}
table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
background-color: #8dbdd8;
}
.leftside {
height: auto;
width: 54%;
float: left;
}
.rightside {
height: 90%;
width: 44%;
float: right;
}
.console {
width: 100%;
height: 300px;
}
.console textarea {
width: 100%;
height: 100%;
}
.chat {
width: 100%;
height: 400px;
}
.chat textarea {
width: 100%;
height: 300px;
}
.files {
width: 100%;
height: 99%;
}
@media only screen and (max-width: 1200px) {
.leftside {
height: auto;
width: 100%;
}
.rightside {
height: 60%;
width: 100%;
}
.files {
width: 100%;
}
}