-
Notifications
You must be signed in to change notification settings - Fork 0
/
emojiTranslator.css
79 lines (72 loc) · 1.61 KB
/
emojiTranslator.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
@font-face {
font-family: 'qarmic_sansregular';
src: url('Qarmic_sans_Abridged-webfont.eot');
src: url('Qarmic_sans_Abridged-webfont.eot?#iefix') format('embedded-opentype'),
url('Qarmic_sans_Abridged-webfont.woff') format('woff'),
url('Qarmic_sans_Abridged-webfont.ttf') format('truetype'),
url('Qarmic_sans_Abridged-webfont.svg#qarmic_sansregular') format('svg');
font-weight: normal;
font-style: normal;
}
body {
background-image: url("background.png");
color: #003587;
font-family: qarmic_sansregular;
font-size: 30px;
}
h1 {
font-family: qarmic_sansregular;
font-size: 90px;
font-style: bold;
text-align: center;
}
textarea{
font-family: qarmic_sansregular;
border:2px solid #4092d9;
border-radius:15px;
padding: 10px;
}
.field_set {
border-color: #4091d9;
border-style: solid;
padding-bottom: 0px;
border-radius:15px;
margin-bottom: 10px;
}
.legend {
position: relative;
top: -3px;
left: 0px;
}
.input {
text-align: center;
}
.myButton {
-moz-box-shadow: 3px 3px 2px 0px #618191;
-webkit-box-shadow: 3px 3px 2px 0px #618191;
box-shadow: 3px 3px 2px 0px #618191;
background-color:transparent;
-moz-border-radius:15px;
-webkit-border-radius:15px;
border-radius:15px;
border:2px solid #4092d9;
display:inline-block;
cursor:pointer;
color:#003687;
font-family:qarmic_sansregular;
font-size:17px;
padding:7px 25px;
text-decoration:none;
text-shadow:0px 0px 0px #003687;
margin-top: 10px;
}
.myButton:hover {
background-color:transparent;
font-weight: bold;
position:relative;
top:2px;
}
.myButton:active {
position:relative;
top:5px;
}