-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (102 loc) · 1.6 KB
/
style.css
File metadata and controls
116 lines (102 loc) · 1.6 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Source Code Pro", monospace;
font-weight: 400;
color: #fff;
}
body {
height: 100%;
background: linear-gradient(40deg, #14148da6, #333);
padding: 10px 50px;
}
html {
height: 100%;
}
header {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-bottom: 30px;
}
header .title {
font-size: 1.5rem;
letter-spacing: -1px;
padding: 10px 0;
}
header nav {
display: flex;
width: 50%;
justify-content: center;
align-items: center;
padding: 10px;
border-radius: 8px;
}
header nav > div {
margin: 0 10px;
transition: all 0.3s;
}
a {
text-decoration: none;
}
input, button, textarea {
color: #333;
padding: 3px;
}
#status {
flex-grow: 1;
text-align: right;
}
.selected {
color: orange;
}
#main {
transition: all 0.3s;
position: absolute;
top: 120px;
left: 10%;
right: 10%;
bottom: 10%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
border-radius: 8px;
background-color: rgba(255, 255, 255, 0.3);
color: #333;
}
#taQuery {
width: 80% !important;
border: none;
border-radius: 5px;
}
form {
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
form input, form button {
margin: 3px;
border-radius: 5px;
border: none;
}
@media (max-width: 500px) {
body, html {
min-width: 400px;
}
body {
padding: 10px 0;
font-size: 1.3rem;
}
nav > div {
padding: 13px;
}
#main {
margin: 0;
padding: 0 20px;
}
}