controller_themes.css
1.63 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
112
113
114
115
116
117
118
119
120
/* common stuff */
#css-files-list h2, #image-files-list h2 {
margin-top: 0px;
}
#css-files-list ul, #image-files-list ul, #css-code textarea {
height: 280px;
}
#css-files-list ul, #image-files-list ul {
overflow: auto;
}
/* header stuff */
#theme-name input {
font-size: 18px;
border: 1px solid black;
background: white;
padding: 2px;
font-weight: bold;
}
/* files list */
#css-files-list {
width: 200px;
float: left;
margin-left: 10px;
}
#css-files-list ul {
margin: 0px;
padding-left: 0px;
background: white;
border: 1px solid #bbb;
}
#css-files-list li {
list-style: none;
margin-bottom: 5px;
border-bottom: 1px solid #bbb;
}
#css-files-list li a {
display: block;
padding: 1px 5px;
}
#css-files-list a:hover {
color: red;
}
/* images list */
#image-files-list {
width: 200px;
float: right;
margin-right: 10px;
}
#image-files-list ul {
background: white;
border: 1px solid #bbb;
}
#image-files-list ul, #image-files-list li {
padding: 0px;
margin: 0px;
list-style: none;
}
#image-files-list li {
border-bottom: 1px solid #bbb;
padding: 5px 0px;
text-align: center;
}
#image-files-list img {
max-width: 98%;
max-height: 40px;
}
.msie6 #image-files-list img {
width: 50%;
height: 40px;
}
#image-files-list li span {
display: block;
width: 100%;
overflow: hidden;
}
/* textbox */
#css-code {
margin-left: 220px;
margin-right: 220px;
}
.msie6 #css-code {
float: left;
margin-left: 20px;
margin-right: 240px;
}
#css-code textarea {
width: 100%;
}
.msie6 #css-code textarea {
width: 500px;
}
td.selected {
background: #ff9;
font-style: italic;
}