-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfetch.css
More file actions
55 lines (48 loc) · 913 Bytes
/
Copy pathfetch.css
File metadata and controls
55 lines (48 loc) · 913 Bytes
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
body {
max-height: fit-content;
background-color: gray;
}
.search-container {
display: flex;
align-items: center;
}
.search-bar {
padding: 8px;
border: 1px solid #175a00;
background-color: #004600;
color: rgb(246, 246, 246);
border-radius: 4px;
margin: 20px;
}
.search-button {
padding: 8px 16px;
background-color: rgb(0, 79, 0);
color: rgb(255, 255, 255);
border: none;
border-radius: 4px;
cursor: pointer;
}
.search-button:hover {
background-color: #004600;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
}
.box {
height: 250px;
width: 250px;
background-color: rgb(0, 0, 0);
color: green;
font-family: monospace;
font-size: 20px;
padding: 20px;
overflow: auto;
margin: 20px;
}
.box-container{
display: flex;
flex-direction: row;
flex-wrap: wrap;
}