-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathemojicipher.css
91 lines (86 loc) · 1.41 KB
/
emojicipher.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
body,
html {
font-family: Lato, sans-serif;
margin: 0;
color: #666666;
text-align: center;
background-color: #eeeeee;
}
#container {
width: 720px;
padding: 40px 0;
margin: auto;
}
input {
border: none;
font-family: Lato, sans-serif;
display: block;
font-size: 24px;
cursor: text;
padding: 20px;
color: #666666;
margin: auto;
width: 80%;
background-color: #ffffff;
}
#advanced {
font-size: 0;
}
#textalphabet,
#emojialphabet {
width: 60%;
display: inline-block;
}
#shuffletext,
#shuffleemojis {
width: 20%;
display: inline-block;
margin: 8px 0;
}
input[type="button"] {
background-color: #e5e5e5;
}
input[type="button"]:hover {
cursor: pointer;
background-color: #dddddd;
}
#output {
font-family: Lato, sans-serif;
color: #666666;
font-size: 48px;
padding: 32px 16px;
margin-top: 16px;
text-align: center;
background-color: transparent;
border: none;
width: 100%;
cursor: text;
resize: none;
}
footer {
margin: 8px;
font-size: 0;
}
footer a {
font-size: 16px;
margin: 0 16px;
display: inline-block;
}
* {
cursor: default;
}
a {
color: #aaaaaa;
text-decoration: none;
transition: color 0.2s ease;
}
a:hover,
a:hover img {
cursor: pointer;
color: #888888;
}
@media screen and (max-width: 720px) {
#container {
width: 100%;
}
}