diff options
author | jhunkeler <jhunkeler@c5b2fb0a-d05d-0410-98c8-828840a80ff6> | 2010-01-26 21:52:17 -0500 |
---|---|---|
committer | jhunkeler <jhunkeler@c5b2fb0a-d05d-0410-98c8-828840a80ff6> | 2010-01-26 21:52:17 -0500 |
commit | a0701d581dfa39113c1af68637118d99d5a0822a (patch) | |
tree | 17858862321c09316dbbeb9038695a8815406e2a /blocks | |
parent | 6d28ed7cd510621e571da1d5a20848d58d079f53 (diff) | |
download | bayonetcms-a0701d581dfa39113c1af68637118d99d5a0822a.tar.gz |
commit just prior to some pure insanity.
implementing theme system
git-svn-id: http://svn.3rd-infantry-division.org/testing/branches/Bayonet CMS v2@463 c5b2fb0a-d05d-0410-98c8-828840a80ff6
Diffstat (limited to 'blocks')
-rw-r--r-- | blocks/mini_calendar/style.css | 36 | ||||
-rw-r--r-- | blocks/rss_agw/index.php | 2 |
2 files changed, 19 insertions, 19 deletions
diff --git a/blocks/mini_calendar/style.css b/blocks/mini_calendar/style.css index 792ab69..d34db05 100644 --- a/blocks/mini_calendar/style.css +++ b/blocks/mini_calendar/style.css @@ -7,8 +7,8 @@ font-family:arial;
}
td.weekday {
- width:34px;
- height:34px;
+ width:40px;
+ height:20px;
background-color:#cb2121;
color:green;
text-align:center;
@@ -16,8 +16,8 @@ /* font-weight:bold; */
}
th.weekday {
- width:34px;
- height:20px;
+ width:40px;
+ height:29px;
background-color:white;
color:black;
text-align:center;
@@ -25,8 +25,8 @@ font-weight:normal;
}
.monthday {
- /* width:29px; */
- height:36px;
+ width:40px;
+ height:20px;
background-color:#aea2a2;
color:white;
text-align:left;
@@ -35,8 +35,8 @@ }
.monthtoday {
- /* width:25px; */
- height:32px;
+ width:38px;
+ height:38px;
/* background-color:#3666ba; */
color:#225eac;
text-align:center;
@@ -46,8 +46,8 @@ border:1px solid #333333;
}
.event {
- /* width:25px; */
- height:32px;
+ width:38px;
+ height:38px;
background-color:#225eac;
text-align:center;
border:1px solid #333333;
@@ -57,8 +57,8 @@ color:white;
}
.eventtoday {
- /* width:25px; */
- height:32px;
+ width:38px;
+ height:38px;
background-color:#225eac;
color: white;
text-align:center;
@@ -68,8 +68,8 @@ border:1px solid #333333;
}
td.cal_weekday {
- width:34px;
- height:34px;
+ width:40px;
+ height:40px;
background-color:#a1a1a1;
vertical-align:top;
color:#eeeeee;
@@ -78,8 +78,8 @@ font-size:12px;
}
td.cal_weekend {
- width:34px;
- height:34px;
+ width:40px;
+ height:40px;
background-color:#8f8f8f;
vertical-align:top;
color:#eeeeee;
@@ -88,8 +88,8 @@ font-size:12px;
}
td.cal_notmonth {
- width:34px;
- height:34px;
+ width:40px;
+ height:40px;
background-color:#6e6e6e;
vertical-align:top;
color:#d4d4d4;
diff --git a/blocks/rss_agw/index.php b/blocks/rss_agw/index.php index 3a492ca..21506bb 100644 --- a/blocks/rss_agw/index.php +++ b/blocks/rss_agw/index.php @@ -57,7 +57,7 @@ if ($agwProcess === true) { $options = array(CURLOPT_FORBID_REUSE => true, CURLOPT_POST => false, CURLOPT_RETURNTRANSFER => true, - CURLOPT_TIMEOUT => 15, + CURLOPT_TIMEOUT => 3, CURLOPT_USERAGENT => 'Mozilla/5.0 (Compatible; libCURL)', CURLOPT_VERBOSE => false); |