-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
105 lines (88 loc) · 1.46 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
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,300&display=swap");
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
font-family: "Lato", sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.wrapper {
padding: 0.3rem;
box-shadow: 0 0 12px rgba(0, 0, 0, 0.9);
}
.searchEmoji {
padding: 0.5rem;
width: 18rem;
font-size: 1rem;
font-family: inherit;
font-weight: bold;
text-align: center;
outline: 0;
}
.emojiContainer {
margin: 0.5rem 0;
padding: 0.5rem;
height: 20rem;
width: 18rem;
overflow-y: auto;
border-radius: 12px;
}
.loading {
text-align: center;
}
.loading img {
height: 6rem;
width: 6rem;
visibility: hidden;
}
.active img {
visibility: visible;
}
.copyEmoji {
font-size: 1.5rem;
outline: 0;
border: 0;
background: none;
cursor: pointer;
}
.copyEmoji::selection,
.copyEmoji::-moz-selection {
background-color: #fff;
color: #fff;
}
input {
height: 2rem;
width: 2rem;
}
li {
list-style: none;
margin: 0 0.3rem;
border: 1px solid black;
}
a {
text-decoration: none;
color: black;
cursor: pointer;
}
a:hover,
a:active {
color: royalblue;
}
footer {
margin: 0.5rem 0;
text-align: center;
font-size: 0.6rem;
}
.emojiContainer::-webkit-scrollbar {
width: 0.3rem;
}
.emojiContainer::-webkit-scrollbar-thumb {
background-color: black;
border-radius: 12px;
}