forked from brothersincode/virastar
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.css
150 lines (133 loc) · 2.79 KB
/
app.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
html, body {
height: 100%;
}
body {
font-family:"geeza pro","arial";
height: 100%;
width: 100%;
}
header {
background-color: #444;
color:#f6f6f6;
height:35px;
font-family:"geeza pro","tahoma";
}
header h1 {font-size: 18px;font-weight: bold;line-height: 35px;padding:0 10px;font-family:"geeza pro","arial";}
#submit {position: absolute;top:8px;left:50%;}
#textarea {
/*position: absolute;*/
top:35px;
bottom:0;
right:0;
border:0;
padding:10px;
display: block;
font-size: 16px;
font-weight: bold;
line-height: 22px;
overflow: auto;
overflow-x: hidden;
font-weight: bold;
font-family: "geeza pro","arial";
}
#result {
position: absolute;
top:35px;
bottom:0;
left:0;
padding:10px;
display: block;
font-size: 16px;
font-weight: bold;
line-height: 22px;
background:#FFFFC1;
border-right:1px solid #ccc;
overflow: auto;
}
del {text-decoration: none; background-color: #fcc;white-space: pre;display: none;}
del.visible_del {display: inline;white-space: pre;}
#plain,#html {}
ins {background-color: #77EE76;}
#options {
position: absolute;
top:8px;
right:50%;
}
#options p {display: inline;}
#options p.hidden {display: none;}
#options p.visible {display: inline !important;}
#links {
position: absolute;
top:8px;
left:10px;
}
#links a {
padding:3px 15px;
background-color: #555;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
border-radius: 20px;
margin:0 5px 0 0;
color:#f6f6f6;
}
#links a:hover {text-decoration: none;background-color: #888;}
#about, #bug {
position: absolute;
top:0; bottom:0;
left:0;right:0;
background-color: rgba(0,0,0,0.6);
overflow: auto;
}
.box {
width:580px;
margin-bottom: 50px;
border:5px solid #888;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
position: absolute;
left:50%;
margin-left: -300px;
top:50px;
-moz-box-shadow: 0px 0px 40px rgba(0,0,0,0.4);
-webkit-box-shadow: 0px 0px 40px rgba(0,0,0,0.4);
box-shadow: 0px 0px 40px rgba(0,0,0,0.4);
}
.box .content {
background-color: #f6f6f6;
padding:20px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
position: relative;
}
.box .close {
position: absolute;
top:9px;
left:12px;
font-size: 24px;
font-weight: bold;
color:#888;
}
.box .ltr .close {
right:12px;
left:auto;
}
.box .close:hover {color:#444;text-decoration: none;}
.entry {float: right;padding-bottom: 15px;margin-left: 50px;}
.full_entry {padding-bottom: 15px;}
.short {}
.long {width: 540px;}
label.title {margin-left: 5px;}
label.help {color:#888;}
.box h2 {
margin:-20px -20px 20px;
border-bottom: 1px solid #aaa;
padding: 10px;
}