forked from cdcor/LCARS-Generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
155 lines (129 loc) · 2.61 KB
/
main.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
151
152
153
154
155
@font-face
{
font-family: trek;
src: url('resources/swiss911.ttf');
}
* {
margin: 0;
padding: 0;
}
body {
background-image: url('resources/background.jpg');
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 10pt;
}
/*
#mainContainer div {
min-width: 10px;
min-height: 10px;
border: 1px solid red;
}
*/
#testFrame {
margin: auto;
padding: 25px;
font-family: trek, "Arial Narrow", Arial;
font-size: 14pt;
text-transform: uppercase;
}
#banner {
font-family: trek, "Arial Narrow", Arial;
font-size: 48pt;
text-transform: uppercase;
text-align: center;
}
#optionsContainer {
position: relative;
margin: auto;
width: 800px;
}
#optionsContainer > div { /* Each Column */
float: left;
margin-right: 20px;
min-width: 200px;
}
#optionsContainer > div > * { /* Every element in the column */
margin-bottom: 3px;
}
.button {
width: 196px;
padding: 5px;
line-height: 15px;
border: 2px solid #888;
color: #888;
text-align: center;
}
.button:hover {
border-color: black;
color: black;
cursor: pointer;
}
input.number {
width: 50px;
}
input[type=text] {
background-color: transparent;
border: 2px solid #888;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
color: #666;
}
input[type=text]:focus {
border: 2px solid black;
color: black;
}
#inputBorderTitle {
width: 100px;
}
.colorTheme {
clear: both;
line-height: 30px;
}
.colorSelector {
margin-right: 5px;
width: 30px;
height: 30px;
background-image: url('libs/colorpicker/images/select3.png');
z-index: 10;
}
.colorTheme > .colorSelector {
float: left;
}
#borderThemesTable {
border-spacing: 5px;
}
#borderThemesTable tr td:first-child {
padding-right: 5px;
border-right: 2px solid #888;
}
.newColorButton {
width: 16px;
height: 16px;
background-image: url('resources/add-button.png');
vertical-align: middle;
}
.newColorButton:hover {
background-image: url('resources/add-button-hover.png');
cursor: pointer;
}
.colorClose {
width: 30px;
height: 16px;
background-image: url('resources/close-button.png');
background-repeat: no-repeat;
background-position: center;
vertical-align: middle;
}
.themeClose {
width: 16px;
height: 16px;
background-image: url('resources/close-button.png');
vertical-align: middle;
}
.colorClose:hover, .themeClose:hover {
background-image: url('resources/close-button-hover.png');
cursor: pointer;
}
#errorMessage {
font-weight: bold;
color: red;
}