-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
134 lines (128 loc) · 2.23 KB
/
style.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
body {
font-family: sans-serif;
margin: 0;
background: rgba(0,0,255,0.04);
}
nav {
text-align: center;
padding: 40px 0 20px 0;
color: black;
opacity: 0.9;
}
.sub {
font-size: 14px;
}
input[type=text] {
width: 100%;
padding: 5px;
box-sizing: border-box;
background: white;
border: 1px solid rgba(0,0,0,0.1);
}
textarea {
width: 100%;
height: 50px;
background: white;
border: 1px solid rgba(0,0,0,0.1);
padding: 5px;
box-sizing: border-box;
}
nav a {
font-family: sans-serif;
/*
letter-spacing: -3px;
*/
text-decoration: none;
font-size: 40px;
font-weight: bold;
display: inline-block;
margin: 10px;
color: black;
}
nav td:nth-child(1) {
width: 100px;
font-weight: bold;
text-align: right;
vertical-align: middle;
}
nav table {
max-width: 800px;
margin: 0 auto;
width: 90%;
}
nav td {
background: none;
color: black;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 20px 0;
}
.item {
width: 200px;
padding: 5px;
box-sizing: border-box;
}
.item img {
width: 100%;
image-rendering: pixelated;
/* to phunk or not phunk? */
/* transform: scale(-1,1); */
}
table {
table-layout: fixed;
width: 100%;
border-spacing: 0;
}
td {
background: white;
vertical-align: top;
word-wrap:break-word;
padding: 7px;
box-sizing: border-box;
font-size: 13px;
cursor: pointer;
}
.container td:nth-child(1) {
font-weight: bold;
}
.container td {
border-bottom: 2px solid rgba(0,0,255,0.04);
}
.container tr:hover td {
background: lavender;
}
#query {
margin-top: 5px;
background: royalblue;
cursor: pointer;
padding: 10px;
max-width: 800px;
width: 90%;
box-sizing: border-box;
color: white;
border-radius: 4px;
border:none;
font-size: 20px;
font-family: sans-serif;
}
.btn {
font-family: sans-serif;
font-size: 14px;
font-style: normal;
letter-spacing: 0;
background: rgba(0,0,0,0.9);
color: white;
padding: 5px 10px;
margin: 20px 0;
border-radius: 2px;
}
.loader {
padding: 100px;
font-size: 14px;
opacity: 0.9;
font-weight: bold;
text-transform: uppercase;
}