OSDN Git Service

Demoサイトで幅がおかしくなる問題を修正
[ligheditor/tagget.git] / tagget.css
1 @charset "UTF-8";
2
3 /**
4  * CSS for tagget
5  *
6  * http://tagget.org/
7  *
8  * Licensed under the MIT license.
9  * Copyright (c) 2009 tagget.org
10  *
11  * version 0.1.1
12  */
13
14 /* reset */
15 div.tagget_wrapper p {
16         margin: 0;
17         padding: 0;
18 }
19
20 /* wrapper */
21 div.tagget_wrapper {
22         text-align: center;
23 }
24
25 /* menu */
26 div.tagget_toolbar p {
27         padding: 2px 4px;
28         float: left;
29         height: 100%;
30         border-right: 1px solid #aaaaaa;
31 }
32
33 /* selectの誤差調整 */
34 div.tagget_toolbar p.tagget_encode,
35 div.tagget_toolbar p.tagget_cookie,
36 div.tagget_toolbar p.tagget_intelli,
37 div.tagget_toolbar p.tagget_type {
38         padding-top: 4px;
39         padding-bottom: 3px;
40 }
41
42 /* cookieのフォント調整 */
43 div.tagget_toolbar p.tagget_intelli,
44 div.tagget_toolbar p.tagget_cookie {
45         border-right: none;
46 }
47 div.tagget_toolbar p.tagget_intelli label,
48 div.tagget_toolbar p.tagget_cookie label {
49         font-weight: normal;
50         vertical-align: top;
51 }
52
53 /* status */
54 div.tagget_wrapper p.tagget_status span {
55         font-weight: normal;
56         vertical-align: top;
57         font-style: italic;
58         margin-left: 10px;
59 }
60
61 div.tagget_wrapper p.tagget_status {
62         text-align: right;
63         padding-right: 5px;
64 }
65
66 /* inputの余白調整 */
67 div.tagget_toolbar p.tagget_replace input {
68         margin: 0px 3px;
69         width: 8em;
70 }
71
72 div.tagget_toolbar p.tagget_replace img {
73         vertical-align: baseline;
74 }
75
76 /* main */
77 p.tagget_main {
78 }
79
80 p.tagget_main textarea {
81         font-family: monospace;
82         width: 99%;
83         height: 100%;
84         overflow: scroll;
85         padding: 0 3px;
86         margin: 0;
87 }
88
89 /* popup */
90 ul.tagget_popup {
91         padding: 0;
92         margin: 1em 0 0 0;
93         position: absolute;
94         left: 0;
95         top: 0;
96         display: none;
97         z-index: 1;
98         list-style-type: none;
99         border: 1px solid #ccc;
100         /*font-size: 88%;*/
101         font-family: monospace;
102         background-color: #fcfcfc;
103         text-align: left;
104 }
105
106 ul.tagget_popup li {
107         padding: 0 3px;
108         margin: 0;
109 }
110
111 ul.tagget_popup li.tagget_current {
112         background-color: #789;
113         color: #fff;
114 }
115
116 /* dummy */
117 pre.tagget_dummy {
118         position: absolute;
119         left: 0;
120         top: 0;
121         padding: 0;
122         margin: 0;
123         visibility: hidden;
124         text-align: left;
125 }