Created
January 9, 2015 06:20
-
-
Save vladkorotnev/049cc189780f56f12a98 to your computer and use it in GitHub Desktop.
Terminal style for VK Chatbox
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
@font-face { | |
font-family: 'keyrus'; | |
src: url('http://vladkorotnev.me/keyrus.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */ | |
} | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_tab, #rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_msgs_out, | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_msgs, | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_msgs_unread { | |
background: #000 !important; | |
} | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_msgs_wrap, #rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_msgs, | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_msg{ | |
padding-bottom: 0px !important; | |
} | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_tab_txt { | |
background: #000 !important; | |
color: #fff !important; | |
} | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_msgs { | |
color: #4F4 !important; | |
border:none !important; | |
} | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_msgs { | |
margin-left: 0px !important; | |
} | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_msgs, #rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_msg { | |
max-width: 100% !important; | |
font-family: 'keyrus', monospace; | |
-webkit-font-smoothing: none; | |
-moz-font-smoothing: none; | |
-o-font-smoothing: none; | |
-ms-font-smoothing: none; | |
font-smoothing: none; | |
font-size: 16px; | |
} | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_msgs_out { | |
float: left !important; | |
} | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_msgs_out .fc_msgs :before { | |
content:"> "; | |
} | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_out_msg_arr, #rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_in_msg_arr, | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_msgs_author, | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_tab_txt .emoji_smile_icon, | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_tab_txt .emoji_smile_icon_on, | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_msgs_date | |
{ | |
display: none !important; | |
} | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_tab_txt | |
{ | |
border-top:none !important; | |
} | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_editable :before | |
{ | |
content: "> "; | |
font-family: 'keyrus', monospace; | |
-webkit-font-smoothing: none; | |
-moz-font-smoothing: none; | |
-o-font-smoothing: none; | |
-ms-font-smoothing: none; | |
font-smoothing: none; | |
font-size: 16px; | |
} | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_editable | |
{ | |
color: #4F4 !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment