-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
123 lines (106 loc) · 2.18 KB
/
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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
*, *::before, *::after{
box-sizing: border-box;
font-family: 'Nunito Sans', sans-serif;
padding: 0;
margin: 0;
letter-spacing: 1px;
}
:root{
word-wrap: break-word;
font-size: .9rem;
text-align: justify;
margin: 0 auto;
background-color: rgb(1, 13, 19);
color: rgb(223, 223, 223);
display: flex;
justify-content: center;
}
.container{
margin-top: 2rem;
display: flex;
flex-direction: column;
gap: 2rem;
width: 80vw;
}
.input-group{
display: flex;
gap: 1rem;
justify-content: space-between;
}
.form{
display: flex;
flex-direction: column;
gap: 1rem;
}
#btn{
background-color: rgb(163, 124, 32);
border: none;
border-radius: 0.5rem;
width: 15%;
cursor: pointer;
padding: 0.5rem;
text-align: center;
color:#e2e2e2;
text-transform: uppercase;
font-weight: 500;
}
#btn:hover{
background-color: rgb(198, 151, 41);
}
#query-input{
border: none;
border-radius: 0.5rem;
background-color: #e2e2e2;
padding: 0.5rem;
width: 70%;
}
#query-input:focus, #result-count:focus{
outline: none;
}
#query-input::placeholder{
color: rgba(75, 75, 75, 0.572);
}
#result-count{
border: none;
border-radius: 0.5rem;
background-color: #e2e2e2;
padding: 0.5rem;
width: 15%;
}
#result-count::placeholder{
color: rgba(75, 75, 75, 0.572);
}
#query-output {
font-weight: 400;
display: flex;
flex-direction: column;
gap: 2rem;
}
#query-header {
font-weight: 500;
}
#result-header {
text-transform: uppercase;
text-align: center;
font-size: 1.2rem;
}
#result-item {
display: flex;
flex-direction: column;
gap: 0.25rem;
}
#result-title {
color: rgb(242, 247, 252);
font-weight: 500;
}
#result-url{
color: rgb(234, 184, 67);
}
#result-url:visited{
color: rgb(163, 124, 32);
}
#result-description{
margin-top: 0.5rem;
color: #d6d5d5df;
}