-
Notifications
You must be signed in to change notification settings - Fork 4
/
adminer.css
112 lines (91 loc) · 1.4 KB
/
adminer.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
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
/**
* Adminer "flat" theme by Israel Viana
*
* Color palette from https://kuler.adobe.com/Copy-of-Flat-UI-color-theme-3785174/
* Navy: 2c3e50
* Red: e74c3c
* Gray: ecf0f1
* Light blue: 3498db
* Blue: 2980b9
*/
/*
* Basic tags
*/
body {
font-family: 'Plus Jakarta Sans', sans-serif;
}
a {
color: #2980b9;
}
a:visited {
color: #3498db
}
a:link:hover, a:visited:hover {
color: #e74c3c;
}
h1 {
border-bottom: 1px solid #e74c3c;
background: #ecf0f1;
}
h2 {
border-bottom: 1px solid #e74c3c;
background: #ecf0f1;
}
/*
* Tables
*/
table {
border-top: 0;
border-left: 1px solid silver;
}
td, th {
border-right: 1px solid silver;
border-bottom: 1px solid silver;
padding: .3em .5em;
}
thead th, thead td {
background: #3498db;
color: white;
border-right: 1px solid white;
border-bottom: 1px solid white;
padding: .3em .5em;
}
thead th a, thead td a {
color: #eee;
}
.js span.column {
background: white;
}
th span.column a.text {
color: #2980b9;
}
.js .checkable .checked td, .js .checkable .checked th {
background: rgba(52, 152, 219, .3);
}
.pages {
border: none;
box-shadow: -1px -1px 4px silver;
}
/*
* Common sections
*/
#breadcrumb a {
color: #e74c3c;
}
#logout {
font-weight: bold;
}
/*
* Elements
*/
sup {
padding: 3px 7px;
background: #3498db;
color: white;
border-radius: 2em;
}
code.jush-sql {
display: block;
padding: .4em .7em;
line-height: 1.5em;
}