-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
134 changed files
with
1,540 additions
and
796 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,229 @@ | ||
/* -------------------------------------------------- | ||
Table of Contents | ||
----------------------------------------------------- | ||
:: Shared Styles | ||
:: login | ||
:: games | ||
*/ | ||
|
||
|
||
/* ----------------------------------------- | ||
Shared Styles | ||
----------------------------------------- */ | ||
|
||
body#index { | ||
background: #eee; | ||
} | ||
|
||
@font-face { | ||
font-family: "Black Rose"; | ||
src: url('../fonts/BlackRose.ttf'); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
|
||
.animate-hide { | ||
opacity: 1; | ||
-webkit-transition: opacity 0.5s; | ||
} | ||
.hide { | ||
opacity: 0; | ||
display: block; | ||
} | ||
.display-none { | ||
display: none; | ||
} | ||
|
||
.animate-shrink { | ||
max-height: 400px; | ||
opacity: 1; | ||
overflow: hidden; | ||
-webkit-transition: max-height 2s ease-out, opacity 2s; | ||
} | ||
.shrink { | ||
max-height: 0; | ||
opacity: 0; | ||
} | ||
|
||
.animate-color { | ||
-webkit-transition: color 0.3s; | ||
} | ||
.red { | ||
color: #c22; | ||
} | ||
.green { | ||
color: #2c2; | ||
} | ||
|
||
fieldset { | ||
border-radius: 10px 0 / 8px 0; | ||
border-width: 3px 1px 2px; | ||
border-style: double solid solid; | ||
padding-bottom: 10px; | ||
} | ||
fieldset legend { | ||
background: #eee; | ||
font-size: 1.4em; | ||
color: #444; | ||
padding-left: 8px; | ||
padding-right: 10px; | ||
} | ||
|
||
.theme-button { | ||
font-size: 2.5em; | ||
margin-right: 10px; | ||
position: relative; | ||
top: 10px; | ||
color: #ddd; | ||
} | ||
.no-touch #day-theme-button:hover { | ||
color: #2a2; | ||
} | ||
.no-touch #night-theme-button:hover { | ||
color: #167; | ||
} | ||
.theme-button.selected-theme { | ||
color: #2a2; | ||
} | ||
|
||
|
||
/* ----------------------------------------- | ||
login | ||
----------------------------------------- */ | ||
|
||
#login-title { | ||
margin-top: 120px; | ||
width: auto; | ||
color: #444; | ||
position: relative; | ||
text-align: right; | ||
} | ||
|
||
#login-title .title { | ||
/*font: 700 italic 5.5em 'Overlock', cursive;*/ | ||
/*font: 500 italic 5.7em 'IM Fell DW Pica', cursive;*/ | ||
/*font: 6em 'Kaushan Script', cursive;*/ | ||
/*font: 400 10em 'Lovers Quarrel', cursive;*/ | ||
/*font: 400 6em 'Satisfy', cursive; */ | ||
/*font: 400 6em 'Condiment', cursive;*/ | ||
/*font: 400 5em 'Knewave', cursive;*/ | ||
/*font: 400 5em 'Walter Turncoat', cursive;*/ | ||
font: 400 5.8em 'Black Rose', cursive; | ||
} | ||
|
||
#login-title .icon { | ||
color: #2a2; | ||
font-size: 3em; | ||
position: relative; | ||
top: -40px; | ||
left: 5px; | ||
} | ||
|
||
#login-title #icon-fieldset { | ||
position: absolute; | ||
top: 130px; | ||
left: 90px; | ||
background: transparent; | ||
} | ||
#login-title #icon-fieldset fieldset { | ||
border-color: #ccc; | ||
} | ||
#login-title .final-icon { | ||
color: #2a2; | ||
font-size: 3em; | ||
} | ||
|
||
#login-title .subtitle { | ||
overflow: hidden; | ||
position: relative; | ||
top: 10px; | ||
right: 40px; | ||
font: italic 1.5em 'Satisfy', cursive; | ||
} | ||
#login-title .subtitle-rotator { | ||
font: 6em 'Kaushan Script', cursive; | ||
color: #2a2; | ||
border-bottom: 1px #2a2 dashed; | ||
padding-bottom: 2px; | ||
padding-right: 1px; | ||
margin-top: 15px; | ||
margin-right: 5px; | ||
font-size: 1em; | ||
position: relative; | ||
top: -6px; | ||
} | ||
#login-title .subtitle-rotator span { | ||
border-bottom: 1px #444 solid; | ||
margin-bottom: -2px; | ||
height: 0; | ||
width: auto; | ||
position: relative; | ||
top: 6px; | ||
} | ||
|
||
#login-box { | ||
height: 400px; | ||
width: 400px; | ||
margin: -10px; | ||
} | ||
#login-box legend { | ||
text-align: left; | ||
} | ||
|
||
.clearfix:before, .clearfix:after { | ||
content: ' '; | ||
display: table; | ||
} | ||
.clearfix:after{ | ||
clear: both; | ||
} | ||
|
||
|
||
/* ----------------------------------------- | ||
games | ||
----------------------------------------- */ | ||
|
||
#view-buttons { | ||
padding-top: 25px; | ||
} | ||
#view-buttons .view-button { | ||
font-size: 2em; | ||
width: 65px; | ||
height: 65px; | ||
padding-top: 12px; | ||
margin: 5px; | ||
color: #444; | ||
text-align: center; | ||
} | ||
#view-buttons .view-button:hover { | ||
border-color: #aaa; | ||
color: #2a2; | ||
} | ||
#view-buttons .view-button.current-view { | ||
background: #2a2; | ||
color: #eee; | ||
border-color: #666; | ||
} | ||
.no-touch #view-buttons .view-button.current-view:hover { | ||
color: #444; | ||
} | ||
|
||
#scrollarea { | ||
max-height: 210px; | ||
overflow: auto; | ||
} | ||
#gamelist .odd { | ||
background: #e0f5e0; | ||
} | ||
#gamelist .even { | ||
|
||
} | ||
#gamelist .lineitem { | ||
padding: 4px; | ||
} | ||
.icon-unlock.privacyicon { | ||
color: #ccc; | ||
} | ||
.icon-lock.privacyicon { | ||
color: #888; | ||
} |
Oops, something went wrong.