-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
73 lines (65 loc) · 1.18 KB
/
styles.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
*,
*::before,
*::after {
box-sizing: border-box;
font-family: monospace;
color: #3f3f48;
-webkit-font-smoothing: antialiased;
font-weight: 100;
}
body {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
min-height: 100vh;
max-height: 100vh;
margin: 0;
padding: 0;
background-color: #fff;
}
h1 {
margin-top: 2rem;
}
.container {
display: flex;
flex-direction: column;
justify-content: space-between;
min-width: 50%;
min-height: 50vh;
max-height: 85vh;
padding: 2rem;
margin: 3rem 2rem 2rem;
border: 1px solid rgba(0, 0, 0, 0.125);
border-radius: 0.3rem;
}
.place-search {
font-size: 1.2rem;
border: 1px solid #777;
outline: none;
border-radius: 0.3em;
padding: 0.5em;
width: 100%;
height: 2.5em;
}
.card {
border: 1px solid rgba(0, 0, 0, 0.125);
border-radius: 0.3em;
}
.card-header {
padding: 0.5em 1em;
background-color: rgba(0, 0, 0, 0.03);
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-body {
min-height: 200px;
max-height: 70vh;
overflow: auto;
}
.json {
font-size: 0.85rem;
text-align: left;
word-wrap: break-word;
white-space: pre-wrap;
padding: 0.5em;
}