-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
101 lines (85 loc) · 2.49 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
/* font converted using font-converter.net. thank you! */
@font-face {
font-family: "Pyidaungsu";
src: url("./fonts/Pyidaungsu-253Regular.eot");
/* IE9 Compat Modes */
src: url("./fonts/Pyidaungsu-253Regular.eot?#iefix") format("embedded-opentype"),
/* IE6-IE8 */
url("./fonts/Pyidaungsu-253Regular.otf") format("opentype"),
/* Open Type Font */
url("./fonts/Pyidaungsu-253Regular.svg") format("svg"),
/* Legacy iOS */
url("./fonts/Pyidaungsu-253Regular.ttf") format("truetype"),
/* Safari, Android, iOS */
url("./fonts/Pyidaungsu-253Regular.woff") format("woff"),
/* Modern Browsers */
url("./fonts/Pyidaungsu-253Regular.woff2") format("woff2");
/* Modern Browsers */
font-weight: normal;
font-style: normal;
}
header {
text-align: center;
}
header h2 {
display: none;
}
h3 {
text-align: center;
}
body,
section,
#container {
margin: 0px;
padding: 0px;
}
footer {
clear: both;
text-align: center;
padding-top: 30px;
font-family: Pyidaungsu;
}
textarea {
max-width: 100%;
min-width: 100%;
min-height: 300px;
padding: 10px;
line-height: 1.8em;
font-size: 1em;
border: 1px solid #5799DA;
text-align: left;
}
#textContainer {
text-align: center;
}
#From {
display: inline-block;
width: 48%;
padding-left: 10px;
}
#To {
display: inline-block;
width: 48%;
padding-right: 10px;
font-family: Pyidaungsu;
}
@media(max-width:701px) {
#textContainer {
padding: 5px;
}
#From {
width: 100%;
margin: 0px;
padding: 0px;
}
#To {
width: 100%;
margin: 0px;
padding: 0px;
}
textarea {
min-height: 200px;
font-size: .9em;
padding: 10px !important;
}
}