Created
July 24, 2014 02:44
-
-
Save riaf/d3aad20cde677acc350f to your computer and use it in GitHub Desktop.
Connpass をちょっとだけマシにする user-css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-moz-document domain("connpass.com"), domain("*.connpass.com") { | |
/** | |
* $dark: #2c3e50; | |
* $light: #ecf0f1; | |
* $blue: #3498db; | |
* $darkBlue: #2980b9; | |
* $red: #e74c3c; | |
*/ | |
html, body, div, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, button, cite, code, del, dfn, img, ins, kbd, q, samp, small, sub, sup, tt, var, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, textarea { | |
font-family: Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; | |
color: #2c3e50; | |
/** for Windows */ | |
/* font-family: Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; */ | |
} | |
a:link, | |
a:active, | |
.link, | |
.editor_desc a:link, | |
.editor_desc a:active, | |
.editor_desc .link { | |
color: #2980b9; | |
} | |
a:visited, | |
.editor_desc a:visited { | |
color: #3498db; | |
} | |
a.btn_login, .btn_login { | |
color: #ecf0f1 !important; | |
} | |
.caution { | |
color: #e74c3c; | |
} | |
#wrapper { | |
background-color: #fff; | |
} | |
#wrapper > .container > .information_area { | |
display: none; | |
} | |
#header { | |
background-color: #ecf0f1; | |
} | |
#header .container { | |
min-height: 60px; | |
} | |
#header h1 a img { | |
width: 118px; | |
height: 40px; | |
} | |
.page_group_base #header h1 img { | |
width: 71px; | |
} | |
.header_nav_login { | |
top: 17px; | |
} | |
.header_search { | |
top: 19px; | |
} | |
.btn.btn_default, | |
a.btn.btn_default { | |
background: #f5f5f5; | |
color: #2c3e50; | |
} | |
.btn_high_priority, | |
a.btn_high_priority { | |
background: #e74c3c; | |
} | |
.form_input_text { | |
box-shadow: none; | |
} | |
.edit_input input:focus, | |
.edit_input input:hover, | |
.form_textarea:focus, | |
.form_textarea:hover, | |
.form_input_text:focus, | |
.form_input_text:hover { | |
box-shadow: none !important; | |
} | |
.group_box { | |
border-radius: 2px; | |
} | |
.group_box .title { | |
font-size: 1.2em; | |
border-top-right-radius: 2px; | |
border-top-left-radius: 2px; | |
} | |
.event_detail_title a { | |
color: #2c3e50; | |
} | |
.corner_top_6, | |
.group_box .group_cover { | |
border-top-right-radius: 2px !important; | |
border-top-left-radius: 2px !important; | |
} | |
.group_box .group_menu { | |
border-bottom-right-radius: 2px !important; | |
border-bottom-left-radius: 2px !important; | |
} | |
.common_table th { | |
background-image: none; | |
} | |
.event_detail_title { | |
box-shadow: none; | |
} | |
.editor_desc table { | |
width: 100%; | |
} | |
#footer { | |
padding-top: 10px; | |
box-shadow: none; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment