-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (71 loc) · 1.23 KB
/
style.css
File metadata and controls
73 lines (71 loc) · 1.23 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: rgb(238, 121, 121);
}
.main{
width: 100vw;
height: 100%;
display: flex;
flex-direction: column;
color: white;
}
.header{
width: 100%;
background-color: rgb(241, 40, 40);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 2rem 0;
font-family:cursive, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.header h1{
margin: 0.5rem 0;
font-size:2.9rem;
}
.header .search-container{
width: 100%;
text-align: center;
}
.header .search-bar{
width: 40%;
height: 2rem;
border-radius: 0.3rem;
padding: 0.6rem;
margin-bottom: 1rem;
}
#emoji-list{
/* overflow-y: scroll; */
padding: 0.3rem 1rem;
text-transform: capitalize;
font-size: 20px;
}
#emoji-list .emoji{
font-size:30px;
}
#emoji-list li{
display: flex;
justify-content: space-between;
align-items: center;
}
.list-item div{
width: 100%;
}
@media screen and (max-width:450px) {
.header h1{
font-size: 1.8rem;
}
#emoji-list{
font-size: 1rem;
}
#emoji-list li{
word-wrap: wrap;
}
.header .search-bar{
width:90%
}
}