-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (45 loc) · 911 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
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
position: relative;
display: flex;
flex-direction: column;
align-items: center;
}
input {
height: 50px;
width: 300px;
border-radius: 10px;
border: none;
border: 1.5px solid teal;
text-align: center;
font-size: 18px;
margin-bottom: 5px;
}
.char__names {
color: #FFFFFF;
font-size: 1.1rem;
padding: 0 10px;
}
#display__quary {
background-color: #ec1d24cc;
color: #FFFFFF;
width: max-content;
height: fit-content;
display: flex;
flex-direction: column;
align-items: center;
border-radius: 4px;
max-height: 60vh;
overflow-y: scroll;
-ms-overflow-style: none;
scrollbar-width: none;
cursor: pointer;
}
#display__quary::-webkit-scrollbar {
display: none;
}