Should have committed this a while back
jdarwood007

jdarwood007 commited on 2016-05-29 20:06:27
Showing 1 changed files, with 149 additions and 0 deletions.

... ...
@@ -0,0 +1,149 @@
1
+/*** The Specific CSS starts here, the rest is the headers, footers and general ***/
2
+#pacmangen
3
+{
4
+	width: 100%;
5
+	background: #fff;
6
+	min-height: 41em;
7
+}
8
+
9
+/* Fixes some wordpress integrations */
10
+.entry #pacmangen
11
+{
12
+	margin-top: -2em;
13
+	margin-bottom: -4em;
14
+}
15
+
16
+#preview_container #preview
17
+{
18
+	width: 100%;
19
+}
20
+
21
+.floatbuttons
22
+{
23
+	float: right;
24
+}
25
+
26
+dl.info dt
27
+{
28
+	clear: both;
29
+	float: left;
30
+	margin: 0 0 10px;
31
+	padding: 0;
32
+	width: 48%;
33
+}
34
+
35
+dl.info dd
36
+{
37
+	float: left;
38
+	margin: 0 0 3px;
39
+	padding: 0;
40
+	width: 48%;
41
+}
42
+
43
+dl.edits dt
44
+{
45
+	clear: both;
46
+	float: left;
47
+	margin: 0 0 10px;
48
+	padding: 0;
49
+	width: 15em;
50
+}
51
+
52
+dl.edits dd
53
+{
54
+	float: left;
55
+	margin: 0 0 3px;
56
+	padding: 0;
57
+}
58
+
59
+@font-face
60
+{
61
+	font-family: 'Paytone One';
62
+	font-style: normal;
63
+	font-weight: normal;
64
+	src: local('Paytone One'), local('PaytoneOne'), url('http://themes.googleusercontent.com/static/fonts/paytoneone/v4/D_d4Nj6jwG2cmUCLYeqgKYbN6UDyHWBl620a-IRfuBk.woff') format('woff');
65
+}
66
+
67
+.alignleft
68
+{
69
+	float: left;
70
+}
71
+
72
+.alignright
73
+{
74
+	float: right;
75
+}
76
+
77
+#basic_info
78
+{
79
+	float: left;
80
+	margin-left: 10%;
81
+}
82
+
83
+#details_info
84
+{
85
+	float: right;
86
+	margin-right: 10%;
87
+}
88
+
89
+#basic_info, #details_info
90
+{
91
+	padding: 5px 10px;
92
+	background: #eee;
93
+	max-width: 25em;
94
+}
95
+
96
+#basic_info legend, #details_info legend
97
+{
98
+	padding: 3px 3px 1px 3px;
99
+	border-bottom: 1px solid #000;
100
+	background: #fff;
101
+}
102
+
103
+fieldset.edits
104
+{
105
+	padding: 5px 10px;
106
+	margin: 0 10px;
107
+	background: #eee;
108
+	border: 1px solid #000;
109
+}
110
+
111
+fieldset.edits fieldset
112
+{
113
+	padding: 5px 10px;
114
+	background: #eee;
115
+	border: 1px solid #000;
116
+	border-top: 1px dotted #000;
117
+}
118
+
119
+fieldset.edits legend
120
+{
121
+	width: 100%;
122
+	background: transparent;
123
+}
124
+
125
+.pad
126
+{
127
+	padding-left: 3em;
128
+}
129
+
130
+.action_index p#welcome
131
+{
132
+	padding: 3px 3px 1px 3px;
133
+	border: 1px solid #000;
134
+	background: #eee;
135
+	margin: 0 1em 2em 1em;
136
+}
137
+
138
+.action_index ol
139
+{
140
+	list-style: decimal;
141
+	font-size: 200%;
142
+	margin-left: 2em;
143
+	width: 100%;
144
+}
145
+
146
+.action_index ol li
147
+{
148
+	line-height: 2em;
149
+}
0 150
\ No newline at end of file
1 151