This repository was archived by the owner on Jul 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtagitor_layout.css
More file actions
111 lines (94 loc) · 1.7 KB
/
tagitor_layout.css
File metadata and controls
111 lines (94 loc) · 1.7 KB
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
@media print {
.noprint {display: none;} //프린트 설정
}
button {
background-color: #af2321;
font-family: 나눔고딕;
}
textarea{
resize: none;
}
* {
/* 직관적인 방식으로 크기 변경을 하기 위함 */
/* IE 8+ 이상 호환 */
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
background-color: #151515;
margin: 0px;
font-size: 14px;
color: #fff;
font-family: '나눔고딕', '맑은 고딕', '고딕', 'Arial' !important;
}
/* 블록 설정 */
::selection {
background: #333;
color: #e99;
}
::-webkit-selection {
background: #333;
color: #e99;
}
::-moz-selection {
background: #333;
color: #e99;
}
/*TODO: result창 selection color 변경 */
/* textarea border 강조 없애기 */
#textEditor:focus {
outline: none !important;
}
#top{
width: 100%;
padding: 10px 30px;
background-color: #1d385b;
font-size: 14pt;
font-family: 'Myriad Hebrew';
//float 속성 지정
clear: both;
}
#container {
width: 100% - 40px;
margin: 20px;
padding: 20px;
background-color: #242424;
display: inline-block;
border-radius: 20px;
}
/* 높이 맞추기 */
#container:after {
content: "";
display: block;
clear: both;
/* IE 5.5 ~ 7 브라우저 대응 Hack */
*zoom: 1;
}
#textEditor {
background-color: #242424;
font-size: 20px;
margin: 20px;
color: #fff;
border: 0px;
padding: 0px;
line-height: 1.4em;
overflow: hidden;
min-height: 400px;
float:left;
}
#mainEditor {
background-color: #ddd;
padding: 10px 0px;
border: 0px;
//box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.3);
margin-left: 50px;
white-space: pre-wrap;
word-break:break-word;
min-height: 440px;
color: #222;
float: left;
}
#copyright{
clear: both;
}