-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyles.css
More file actions
89 lines (78 loc) · 1.55 KB
/
styles.css
File metadata and controls
89 lines (78 loc) · 1.55 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
@font-face {
font-family: "NerdFont";
src: url("fonts/JetBrainsMonoNerdFont-Medium.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "NerdFont";
src: url("fonts/JetBrainsMonoNerdFont-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: "NerdFont";
src: url("fonts/JetBrainsMonoNerdFont-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: "NerdFont";
src: url("fonts/JetBrainsMonoNerdFont-BoldItalic.ttf") format("truetype");
font-weight: bold;
font-style: italic;
}
body {
background-size: cover;
background-repeat: no-repeat;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 90vh;
}
.search_bar_item {
padding-top: 10px;
padding-bottom: 10px;
font-size: 34px;
border: none;
font-family: 'NerdFont', monospace;
}
.search_bar {
padding-left: 50px;
padding-right: 50px;
border-radius: 5px 0px 0px 5px;
outline: none;
}
.search_button {
border-radius: 0px 5px 5px 0px;
padding-left: 32px;
padding-right: 42px;
margin-left: -4px;
transition: transform 0.3s ease-in-out;
}
p {
font-size: 23px;
max-width: 800px;
padding-left: 26px;
padding-top: 20px;
padding-right: 20px;
padding-bottom: 20px;
border-radius: 5px;
font-family: 'NerdFont', monospace;
text-align: center;
}
p.phrase {
display: none;
}
.phrase_container {
position: fixed;
top: 50%;
left: 0px;
width: 100%;
height: 10%;
display: flex;
align-items: flex-start;
justify-content: center;
}