Просмотр файла vkclone-0.0.1/public/theme/style.css

Размер файла: 3.49Kb
/**
There are main div classes:
- [black_label] - background image + color + padding
- [blue_label] - background image + color + padding
- [blue_block] - background color + border color + padding
- [news] - background image + border + padding
- [text] - padding + line heigth + border
- [post] - padding + margin + background + border
*/
html, body {
	margin: 0px;
	padding: 0px;
}

body {
	background: #fff;
	font-size: 13px;
	color: #555;
	margin: 0 auto;
	font-family: Arial;
}

.mobile_wrapper {
	max-width: 600px;
}
.content_panel {}

.menu_panel {
	background-color: #DCEDFF;
	border-radius: 10px;
}

ul.menu_list {
	list-style-type: none;
	padding: 10px;
}
ul.menu_list > li {
	padding: 3px;
}
ul.menu_list > li:hover {
	background-color: #C2E0FF;
}


a, a:link, a:visited, a:active {
	color: #2B587A;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.blue_label {
	background: #57799d;
	background: linear-gradient(to bottom, #43668a, #4d6f93); /*, #57799d*/
	padding: 4px;
	color: #fff;
	border: 1px solid #57799d;
}

.black_label {
	background: #4A4A4A url(black_label.gif) repeat-x top;
	padding: 4px;
	color: #fff;
}

.blue_block {
	background: #DCEDFF;
	padding: 6px 0 6px 8px;
	border-bottom: 1px solid #C3DDF8;
	border-top: 1px solid #C3DDF8;
}

.news {
	background: #F6F6F6 url(news.gif) repeat-x top;
	border-top: 1px solid #C3DDF8;
	border-left: 1px solid #C3DDF8;
	border-bottom: 1px solid #C3DDF8;
	padding: 4px;
}


div.post {
	padding: 3px;
	margin: 1px 0 1px 0;
	background: #F5F5F5 url(post.gif) repeat-x top;
	border: 1px solid #EAEAE9;
	border-left-width: 3px;
}

div.post:hover {
	background: #F1F8FF url(post2.gif) repeat-x top;
	border: 1px solid #E0EEFC;
	border-left-width: 3px;
}

.blue_label a, .black_label a {
	color: #fff;
}

.blue_label a:hover, .black_label a:hover {
	text-decoration: underline;
}

.text {
	padding: 3px;
	line-height: 125%;
	border: 1px solid #EAEAE9;
}

/*
 * !!!DEPRECATED: "img.favicon_image" class is deprecated
 */
img.favicon_image, img.icon {
	/*background-color: white;*/
	vertical-align: middle;
}

/* Alerts */
.danger_alert, .success_alert, .warning_alert, .info_alert {
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 5px;
	padding-right: 5px;
}
.danger_alert > .title, .success_alert > .title, .warning_alert > .title, .info_alert > .title {
	margin: 2px;
	color: white;
	padding: 1px 3px 1px 3px;
}

.danger_alert {
	background-color: #EBACAC;
	border: 2px solid #FF4A4A;
}
.danger_alert > .title, input[type="submit"].danger {
	background-color: #FF4A4A;
}

.success_alert {
	background-color: #ACEBB0;
	border: 2px solid #3C9E37;
}
.success_alert > .title {
	background-color: #3C9E37;
}

.warning_alert {
	background-color: #EBD0AC;
	border: 2px solid #FFB14A;
}
.warning_alert > .title {
	background-color: #FFB14A;
}

.info_alert {
	background-color: #ACCAEB;
	border: 2px solid #4AA1FF;
}
.info_alert > .title {
	background-color: #4AA1FF;
}

/* Forms and Inputs */
input[type="text"], input[type="[password"] {
	border: 1px solid gray;
	background-color: #F5F5F5;
}

div.right-aligned {
	text-align: right;
}

.datetime {
	color: #BFC7C2;
	font-size: 11px;
}

span.divider {
	color: gray;
}

div.center-aligned {
	text-align: center;
}

table.userinfo {
	border: 1px dotted #ffcc00;
}

div.inline_actions {
	float: right;
}
div.inline_actions img {
	opacity: 0.3;
}
div.inline_actions img:hover {
	opacity: 1;
}

div.incoming_message {
	margin-right: 20px;
	border-radius: 0 10px 10px 0;
}
div.outgoing_message {
	margin-left: 20px;
	border-radius: 10px 0 0 10px;
}