-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (61 loc) · 941 Bytes
/
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
* {
box-sizing: border-box;
}
html,
body {
padding: 0;
margin: 0;
background-color: rgb(242, 253, 246);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
html {
display: flex;
justify-content: center;
}
body {
width: 100%;
max-width: 900px;
}
html {
padding: 16px 0;
}
.basicRequests {
display: flex;
flex-direction: row;
justify-content: space-between;
}
form {
width: 150px;
}
form label,
form select,
form input {
width: 100%;
margin: 10px 0;
}
ul {
max-height: 300px;
overflow: auto;
background-color: white;
list-style: none;
padding: 0;
}
li {
padding: 5px 0;
cursor: pointer;
}
li:hover {
background-color: black;
color: white;
}
pre {
padding: 5px;
white-space: pre-wrap;
background-color: white;
max-height: 100px;
overflow: auto;
}
small {
font-weight: lighter;
}