Browse Source

add round corners to few elements

master
Hedgehog 10 years ago
parent
commit
0b612f3e12
  1. 16
      css/style.css

16
css/style.css

@ -388,6 +388,10 @@ input.userMenu-search-field:focus::-ms-input-placeholder {
{ {
border: solid 1px rgba( 69, 71, 77, .1 ); border: solid 1px rgba( 69, 71, 77, .1 );
background: #f3f5fb; background: #f3f5fb;
}
.dashboard .module {
border-radius: 6px;
} }
.messages-qtd .messages-qtd
{ {
@ -876,6 +880,7 @@ input.userMenu-search-field:focus::-ms-input-placeholder {
background: rgba( 255, 255, 255, .5 ); background: rgba( 255, 255, 255, .5 );
border: solid 1px rgba( 69, 71, 77, .05 ); border: solid 1px rgba( 69, 71, 77, .05 );
padding: 10px; padding: 10px;
border-radius: 6px;
} }
.postboard h2 { .postboard h2 {
font: 18px/40px 'Open Sans Condensed', sans-serif; font: 18px/40px 'Open Sans Condensed', sans-serif;
@ -883,6 +888,7 @@ input.userMenu-search-field:focus::-ms-input-placeholder {
border-bottom: solid 1px rgba( 69, 71, 77, .1 ); border-bottom: solid 1px rgba( 69, 71, 77, .1 );
margin: 0 0 5px 0; margin: 0 0 5px 0;
background: #7691ce; background: #7691ce;
border-radius: 2px;
} }
.postboard h2.fixed .postboard h2.fixed
{ {
@ -914,6 +920,9 @@ input.userMenu-search-field:focus::-ms-input-placeholder {
position: relative; position: relative;
z-index: 1; z-index: 1;
} }
.postboard-posts li:first-child {
border-radius: 4px 4px 0 0;
}
.postboard-news { .postboard-news {
float: right; float: right;
background: rgba( 0, 0, 0, .2 ); background: rgba( 0, 0, 0, .2 );
@ -1315,6 +1324,7 @@ input.userMenu-search-field:focus::-ms-input-placeholder {
background: rgba( 255, 255, 255, .5 ); background: rgba( 255, 255, 255, .5 );
border: solid 1px rgba( 69, 71, 77, .05 ); border: solid 1px rgba( 69, 71, 77, .05 );
padding: 10px; padding: 10px;
border-radius: 6px;
} }
.singleBlock h2 .singleBlock h2
{ {
@ -1326,6 +1336,7 @@ input.userMenu-search-field:focus::-ms-input-placeholder {
margin: 15px 0 0 0; margin: 15px 0 0 0;
padding-left: 5px; padding-left: 5px;
background: #768fce; background: #768fce;
border-radius: 2px;
} }
.singleBlock h3 .singleBlock h3
{ {
@ -1398,7 +1409,8 @@ input.userMenu-search-field:focus::-ms-input-placeholder {
padding: 20px; padding: 20px;
width: 500px; width: 500px;
margin: 10px auto; margin: 10px auto;
border: 5px solid #c7cdda; border: 3px solid #c7cdda;
border-radius: 6px;
} }
.login .module p, .sounds .module p, .keys .module p, .language .module p { .login .module p, .sounds .module p, .keys .module p, .language .module p {
font: 14px "Open Sans", sans-serif; font: 14px "Open Sans", sans-serif;
@ -1485,10 +1497,12 @@ input.userMenu-search-field:focus::-ms-input-placeholder {
left: 50%; left: 50%;
background: rgba( 255, 255, 255, 1.0 ); background: rgba( 255, 255, 255, 1.0 );
box-shadow: 0 0 30px rgba( 0, 0, 0, .6 ); box-shadow: 0 0 30px rgba( 0, 0, 0, .6 );
border-radius: 0 0 4px 4px;
} }
.modal-header .modal-header
{ {
position: relative; position: relative;
} }
.modal-header h3 .modal-header h3
{ {

Loading…
Cancel
Save