aboutsummaryrefslogtreecommitdiff
path: root/source/stylesheets/partials/main
diff options
context:
space:
mode:
authorB Mathis <brandon@imathis.com>2009-11-05 21:30:03 -0600
committerB Mathis <brandon@imathis.com>2009-11-05 21:30:03 -0600
commit145f81046bc5881d7da86b05c8b92862b63f8080 (patch)
treedc5fdc003a11537ab0722cff1db39796eaf601e8 /source/stylesheets/partials/main
parentfc691c1da6b091754b8881af5b2be509479baa21 (diff)
downloadmy_new_personal_website-145f81046bc5881d7da86b05c8b92862b63f8080.tar.xz
my_new_personal_website-145f81046bc5881d7da86b05c8b92862b63f8080.zip
updated rake file, reorganized stylesheets, added google site search, added google analytics
Diffstat (limited to '')
-rw-r--r--source/stylesheets/_layout.sass (renamed from source/stylesheets/partials/main/_layout.sass)2
-rw-r--r--source/stylesheets/_theme.sass (renamed from source/stylesheets/partials/main/_theme.sass)0
-rw-r--r--source/stylesheets/partials/_twitter.sass (renamed from source/stylesheets/partials/main/_twitter.sass)0
-rw-r--r--source/stylesheets/partials/main/_flash_messages.sass36
-rw-r--r--source/stylesheets/partials/main/_form.sass61
5 files changed, 2 insertions, 97 deletions
diff --git a/source/stylesheets/partials/main/_layout.sass b/source/stylesheets/_layout.sass
index 0275a511..ab06b650 100644
--- a/source/stylesheets/partials/main/_layout.sass
+++ b/source/stylesheets/_layout.sass
@@ -18,6 +18,8 @@ html body
background-color= !header_bg
border-bottom= "1px solid" !header_border
padding: 30px 0
+ .page_width
+ position: relative
a.title
font-size= !h1
+heading-font
diff --git a/source/stylesheets/partials/main/_theme.sass b/source/stylesheets/_theme.sass
index b159019e..b159019e 100644
--- a/source/stylesheets/partials/main/_theme.sass
+++ b/source/stylesheets/_theme.sass
diff --git a/source/stylesheets/partials/main/_twitter.sass b/source/stylesheets/partials/_twitter.sass
index baeef5b4..baeef5b4 100644
--- a/source/stylesheets/partials/main/_twitter.sass
+++ b/source/stylesheets/partials/_twitter.sass
diff --git a/source/stylesheets/partials/main/_flash_messages.sass b/source/stylesheets/partials/main/_flash_messages.sass
deleted file mode 100644
index bdc9f9c1..00000000
--- a/source/stylesheets/partials/main/_flash_messages.sass
+++ /dev/null
@@ -1,36 +0,0 @@
-!flash_notice ||= #00529B
-!flash_success ||= #4F8A10
-!flash_warning ||= #FBF4BD
-!flash_error ||= #D8000C
-!flash_notice_bg ||= #BDE5F8
-!flash_success_bg ||= #DFF2BF
-!flash_warning_bg ||= #FBF4BD
-!flash_error_bg ||= #FFD9DA
-
-=flash-message-style
- +flash-message-structure
- &.notice
- +flash-color(!flash_notice, !flash_notice_bg)
- &.success
- +flash-color(!flash_success, !flash_success_bg)
- &.warning
- +flash-color(!flash_warning, !flash_warning_bg)
- &.error
- +flash-color(!flash_error, !flash_error_bg)
-
-=flash-message-structure
- background-repeat: no-repeat
- background-position: 10px center
- border: 1px dashed
- padding: 10px 15px
- margin: 0 0 15px
-
-=flash-color(!color, !bg = 0)
- color= !color
- @if !bg == 0
- background-color= desaturate(lighten(adjust_hue(!color, -10), 83), 20)
- @else
- background-color= !bg
-
-#flash
- +flash-message-style \ No newline at end of file
diff --git a/source/stylesheets/partials/main/_form.sass b/source/stylesheets/partials/main/_form.sass
deleted file mode 100644
index dc28ff0f..00000000
--- a/source/stylesheets/partials/main/_form.sass
+++ /dev/null
@@ -1,61 +0,0 @@
-#page
- form
- clear: both
- padding-bottom= !pad
- fieldset, fieldset input.textbox, fieldset textarea
- +border-radius
- fieldset
- background-color= !fieldset_bg
- width: 480px
- border= "1px solid" !fieldset_border
- padding: 35px 25px 20px
- margin-bottom= !pad*2.2
- label
- font-size: 90%
- display: block
- padding-bottom: 4px
- select
- font-size: 110%
- input.textbox, textarea
- font-size: 115%
- color= !textinput_color
- background-color= !textinput_bg
-
- width: 70%
- padding: 6px 8px
- outline: 0
- display: inline-block
-
- border: 1px solid
- border-top-color= !textinput_border_top
- border-bottom-color= !textinput_border_bottom
- border-left-color= !textinput_border_left
- border-right-color= !textinput_border_right
-
- &:focus
- background= !textinput_bg_focus
- border-color= !textinput_border_focus
-
- input.checkbox, label.checkbox
- display: inline-block
- p
- +clearfix
- padding= 0 8px !pad
- input.wrong:focus
- outline: 2px solid #d0a5a5
- background: #fef2f2
- button
- +border-radius(5px)
- +btn-style(!blue_btn)
- +btn-structure(18px, 1px)
- color= !default_button_text_color
- border:
- width: 1px
- style: solid
- &:hover, &:focus
- +btn-style-hover(!blue_btn)
- outline: none
- &:active
- +btn-style-active(!blue_btn)
- a.cancel
- color= !cancel_link \ No newline at end of file