-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
93 lines (82 loc) · 1.44 KB
/
Copy pathstyles.css
File metadata and controls
93 lines (82 loc) · 1.44 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
* {
border: 0px;
margin: 0px;
box-sizing: border-box;
background-color: slategray;
color: whitesmoke;
font-family: 'Roboto Mono', monospace;
}
/* Title Block */
#title-block {
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
width: 100%;
}
/* Form */
#input-form {
height: auto;
width: auto;
margin-left: 1em;
}
#search-bar {
min-width: 10em;
max-width: 40em;
}
#search-bar, #search-button {
border-width: 0.1em;
border-radius: 0.25em;
border-color: whitesmoke;
border-style: solid;
}
/* Keywords */
#keywords {
margin: 0.25em;
}
#keywords-list {
display: flex;
flex-direction: row;
flex-wrap: wrap;
border-style: solid;
border-radius: 0.25;
border-color: whitesmoke;
border-width: 0.25em;
}
/* Search Results */
#img {
display: flex;
flex-direction: row;
flex-wrap: wrap;
margin: 1em;
}
.item {
width: auto;
margin: 1em;
border-style: solid;
border-color: whitesmoke;
border-width: 0.25em;
}
.img-description {
font-size: 0.8em;
}
/* Github Link */
#github-link {
display: flex;
width: 100%;
text-align: center;
justify-content: center;
position: fixed;
bottom: 0;
right: 0;
border-top: 2px;
}
/* General */
.keyword {
font-size: 0.75em;
margin: 0.25em 1em;
}
.selectable:hover {
text-decoration: underline;
font-size: 0.8em;
}