Created
December 19, 2010 15:14
-
-
Save dtinth/747403 to your computer and use it in GitHub Desktop.
Fullscreen mod!
This file contains hidden or 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
/* FULL SCREEN MODE MOD! | |
replace 1280 and 800 with your screen size and do not zoom. | |
use F11 to go to full screen mode. | |
use ctrl+alt+c to edit custom CSS. | |
hidden/experimental feature. use at your own risk. */ | |
@media (min-width: 1280px) and (min-height: 800px) { | |
#head { | |
padding-bottom: 5px; | |
font-size: 16pt; | |
} | |
#tweet-data { | |
text-align: center; | |
font-size: 16pt; | |
line-height: 60px; | |
} | |
.tweet-display { | |
font-size: 15pt; | |
width: 640px; | |
margin-left: auto; | |
} | |
.tweet-display { | |
margin-right: auto; | |
} | |
#tweet-data, .tweet-display { | |
font-family: Verdana, sans-serif; | |
} | |
.status-text { | |
line-height: 1.4; | |
} | |
.status { | |
padding-top: 9px; | |
padding-bottom: 12px; | |
} | |
.status-picture { | |
width: 48px; height: 48px; | |
} | |
.status-inner { | |
margin-left: 64px; | |
} | |
.status-date { | |
display: block; | |
} | |
.splash-noti { | |
top: 250px; | |
font-size: 64px; | |
} | |
#menu-additional:before { | |
content: "thaiWitter"; | |
color: #D7FC70; | |
font-weight: bold; | |
padding-right: 0.5ex; | |
} | |
#menu-additional:after { | |
position: absolute; | |
display: block; | |
top: 0; left: 0; | |
width: 200px; | |
height: 30px; | |
content: ""; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment