-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
131 lines (99 loc) · 1.71 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
124
125
126
127
128
129
130
131
* {
margin: 0;
padding: 0;
border: 0;
}
*:focus {
outline: none;
}
body {
background: url('bg.gif');
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #444;
}
.wrapper {
max-width: 800px;
margin: 0px auto 0;
background: white;
overflow: hidden;
box-shadow: 0 0 80px #b5b5b5;
padding: 30px 20px 300px 20px;
position: relative;
}
@media all and (min-width: 700px) {
.wrapper {
margin: 24px auto;
}
}
.emoji-list {
overflow: auto;
margin-left: -10px;
min-height: 120px;
}
.emoji-list > div {
float: left;
text-align: center;
font-size: 32px;
/* background: #50f;*/
/*margin: 2px;*/
}
.emoji-list .btn {
position: relative;
}
.emoji-list .btn input {
position: absolute;
left: -9999999px;
font-size: 16px;
background: #eee;
}
.emoji-list .btn input:focus {
font-size: 16px;
}
.search-box {
font-size: 2em;
width: 100%;
color: #666;
box-sizing: border-box;
padding: 10px;
border: 1px solid #bbb;
}
.e-bg {
background: white;
min-height: 48px;
min-width: 48px;
padding: 4px;
box-shadow: inset 0 0 10px #bbb;
border-radius: 8px;
margin: 10px 0 0 10px;
cursor: pointer;
}
.e-bg:hover,
.e-bg:active {
background: #eee;
}
.hidden-header {
display: none;
}
.get-random {
text-align: center;
position: absolute;
width: 95%;
}
.get-random p {
margin-bottom: 12px;
font-size: 22px;
}
.get-random a {
color: green;
}
.copied {
color: green;
font-size: 43px;
font-weight: normal;
text-shadow: #04ff00 0 0 10px;
}
.ad-iframe {
width: 300px;
margin: 0 auto;
overflow: hidden
}