-
Notifications
You must be signed in to change notification settings - Fork 15
/
style.css
121 lines (103 loc) · 2.18 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
h1 {
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
margin-bottom: 0px;
font-weight: lighter;
}
h2 {
font-family: "Lucida Grande", "Lucida Sans Unicode", Geneva, sans-serif;
margin: 0 0 0 15px;
font-size: 120%;
font-weight: lighter;
}
p {
margin-left: 30px;
font-size: small;
font-family: Menlo, Consolas, Monaco, "Lucida Console", monospace;
}
p span {
margin-left: -30px;
font-size: 130% !important;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}
body * {
font-family: Menlo, Consolas, Monaco, "Lucida Console", monospace;
}
body {
background-image: url('./bg.png'); /* by Subtle Patterns (http://subtlepatterns.com/) licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License. */
}
#inp {
position: relative;
top: 0;
left: 0;
width: 100%;
margin: 0px;
font-size: 29px;
text-align: center;
}
.parsedBox, #header, #footer {
width: 80%;
min-width: 600px;
background-color:white;
box-shadow: 0px 0px 12px 0px #000000;
-webkit-box-shadow: 0px 0px 12px 0px #000000;
margin: 25px auto;
padding: 5px 25px 45px 25px;
border-radius: 2px;
text-align: center;
}
.parsedBox {
padding-top: 25px;
}
#footer {
margin-top: 40px;
margin-bottom: 15px;
padding-bottom: 5px;
}
.enLang i, .deLang i, .frLang i, .ptLang i, .lvLang i {
display: block;
height: 19px;
width: 30px;
background-image: url('./flags.png');
background-size: 330px;
}
.enLang i {
background-position: 210px 0px;
}
.deLang i {
background-position: 150px 0px;
}
.frLang i {
background-position: 60px 0px;
}
.ptLang i {
background-position: 240px 0px;
}
.lvLang i {
background-position: 30px 0px;
}
@media only screen and
(min-width:1380px) {
#parsedContainer {
display: inline-block;
left: 8.3%;
position: relative;
width: 83.5%;
min-width: 600px;
}
div#parsedContainer p {
width: 47%;
position: relative;
margin: 15px;
min-width: 488px;
min-height: 65px;
display: inline-block;
padding-left: 0px;
padding-right: 0px;
}
div#parsedContainer p:nth-child(even) {
float: left;
}
div#parsedContainer p:nth-child(odd) {
float: right;
}
}