-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·112 lines (89 loc) · 2.34 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
/* font converted using font-converter.net. thank you! */
@font-face {
font-family: "ZawgyiPaOhHi";
src: url("./fonts/zawgyi/Zawgyi-PaOhHi.eot"); /* IE9 Compat Modes */
src: url("./fonts/zawgyi/Zawgyi-PaOhHi.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
url("./fonts/zawgyi/Zawgyi-PaOhHi.otf") format("opentype"), /* Open Type Font */
url("./fonts/zawgyi/Zawgyi-PaOhHi.svg") format("svg"), /* Legacy iOS */
url("./fonts/zawgyi/Zawgyi-PaOhHi.ttf") format("truetype"), /* Safari, Android, iOS */
url("./fonts/zawgyi/Zawgyi-PaOhHi.woff") format("woff"), /* Modern Browsers */
url("./fonts/zawgyi/Zawgyi-PaOhHi.woff2") format("woff2"); /* Modern Browsers */
font-weight: normal;
font-style: normal;
}
/* font converted using font-converter.net. thank you! */
@font-face {
font-family: "Pyidaungsu";
src: url("./fonts/unicode/Pyidaungsu-253Regular.eot"); /* IE9 Compat Modes */
src: url("./fonts/unicode/Pyidaungsu-253Regular.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
url("./fonts/unicode/Pyidaungsu-253Regular.otf") format("opentype"), /* Open Type Font */
url("./fonts/unicode/Pyidaungsu-253Regular.svg") format("svg"), /* Legacy iOS */
url("./fonts/unicode/Pyidaungsu-253Regular.ttf") format("truetype"), /* Safari, Android, iOS */
url("./fonts/unicode/Pyidaungsu-253Regular.woff") format("woff"), /* Modern Browsers */
url("./fonts/unicode/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;
}
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;
}
#Unicode{
display:inline-block;
width:48%;
padding-left: 10px;
font-family: "Pyidaungsu";
}
#Zawgyi{
display:inline-block;
width:48%;
padding-right: 10px;
font-family: "ZawgyiPaOhHi";
}
@media(max-width:701px){
#textContainer {
padding: 5px;
}
#Unicode{
width:100%;
margin: 0px;
padding: 0px;
}
#Zawgyi{
width:100%;
margin: 0px;
padding: 0px;
}
textarea {
min-height:200px;
font-size: .9em;
padding: 10px !important;
}
}