-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
52 lines (47 loc) · 929 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
body {
background-color: #282828;
font-family: "FiraCode Nerd Font Mono", monospace;
font-size: 14pt;
color: #ebdbb2;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
input {
font-family: "FiraCode Nerd Font Mono", monospace;
font-size: 14pt;
text-align: center;
width: 100vw;
border: none;
outline: none;
}
.container {
text-align: center;
overflow: hidden;
}
.search-box {
padding: 10px;
background-color: #3c3836;
font-family: "FiraCode Nerd Font Mono", monospace;
border: none;
color: #ebdbb2;
border-radius: 5px;
width: 200px;
outline: none;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
outline: none;
}
input[type="text"] {
padding: 10px;
font-size: 14pt;
background-color: #282828;
border: none;
color: #ebdbb2;
border-radius: 5px;
}