]> git.plutz.net Git - confetti/blob - templates/courses.css.sh
display line breaks in comments
[confetti] / templates / courses.css.sh
1 cat <<EOF
2
3 .sort {
4   display: block;
5   width: 126ex;
6   border-width: 1px;
7   border-style: solid;
8   border-radius: 4px 4px 0 0 ;
9   margin: 1em auto .25em auto;
10   padding: .25em 2ex .25em 2ex;
11   background: #EFF;
12 }
13 .sort .label {
14   font-weight: bold;
15 }
16
17 .newcourse {
18   display: block;
19   width: 126ex;
20   border-width: 1px;
21   border-style: solid;
22   border-radius: 0 0 4px 4px;
23   margin: .25em auto 1em auto;
24   padding: .25em 2ex .25em 2ex;
25   background: #EFF;
26 }
27
28 .courselist .course {
29   display: block;
30   width: 130ex;
31   border-style: solid;
32   border-width: 1px;
33   margin: .25em auto;
34   padding: 0;
35   overflow: auto;
36   background: #FFF;
37 }
38
39 .courselist .course .section {
40   display: inline-block;
41   float:left;
42   width: 25ex;
43   margin: .125em .5ex .5ex .5ex;
44   padding: 0 .2em .2em .2em;
45   background: #EEE;
46 }
47
48 .courselist .course .dtstart {
49   width: 35ex;
50 }
51 .courselist .course .dtstart .DTSYEAR{
52   display: inline-block;
53   text-align: center;
54   font-weight: bold;
55   width: 11ex;
56 }
57 .courselist .course .dtstart .DTSMONTH{
58   display: inline-block;
59   text-align: center;
60   font-weight: bold;
61   width: 18ex;
62 }
63 .courselist .course .dtstart .DTS{
64   display: inline-block;
65   text-align: center;
66   font-weight: bold;
67   width: 4ex;
68 }
69 .courselist .course .dtstart .DTSCALHEAD{
70   display: inline-block;
71   font-weight: bold;
72   width: 4ex;
73   margin: .25ex;
74 }
75 .courselist .course .dtstart .DTSCAL{
76   display: inline-block;
77   width: 4ex;
78   margin: .25ex;
79 }
80 .courselist .course .dtstart .selected {
81   font-weight: bold;
82 }
83 .courselist .course .dtstart .DTSTIME{
84   display: inline-block;
85   width: 10ex;
86 }
87 .courselist .course .dtstart span.DTSTIME{
88   font-weight: bold;
89 }
90
91 .courselist .course .recur{
92   width: 35ex;
93 }
94
95 .courselist .course .control {
96   float: right;
97   max-width: 22ex;
98   text-align: right;
99   margin-right: 0;
100   background: #EEF;
101 }
102 .courselist .course .control .item {
103   color: #008;
104   margin-top: .2em;
105   margin-right: 1ex;
106 }
107 .courselist .course .control a.item {
108   min-width: 10ex;
109   border-style: solid double solid solid;
110   border-width: 1px 3px 1px 1px;
111   border-color: #000;
112   padding: .1em 1ex;
113   background: #FFF;
114 }
115 .courselist .course .control a.item:hover{
116   border-width: 1px 1px 1px 1px;
117 }
118
119 .courselist .course .section .sectitle {
120   display: block;
121   font-weight: bold;
122   margin: .2em .2em .2em .2em;
123 }
124
125 .courselist .course .section .item {
126   display: block;
127   max-width: 25ex;
128   word-wrap: break-word;
129 }
130 .courselist .course .section input[type="text"] {
131   width: 24ex;
132 }
133
134 .courselist .course .section textarea.COMMENT {
135   width: 24ex;
136   min-height: 6em;
137 }
138
139 EOF
140
141 # vi:set filetype=css: