You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

141 lines
2.7 KiB

body {
background: #808080;
font-family: arial;
font-size: 15px;
color: #444;
line-height: 1.475;
}
* {
box-sizing: border-box;
}
.main-container {
width: 600px;
background: #fff;
border-radius: 5px;
box-shadow: 1px 1px 10px -3px #000;
margin: 30px auto;
padding: 20px;
}
h1 {
font-size: 1.2em;
margin: 0 0 20px 0;
padding: 0;
font-weight: 100;
text-align: center;
}
a {
text-decoration: none;
color: #a93a65;
}
a:hover {
text-decoration: underline;
}
li {
margin-bottom: 20px;
}
input[type="text"], select {
font-weight: normal;
border-radius: 3px;
padding: 0.8em 0.8em;
border: 1px solid #CCC;
border-spacing: 0;
font-family: arial, verdana;
box-sizing: border-box;
box-shadow: none;
margin: 0;
background: #FFF;
height: auto !important;
min-width: 0px;
max-width: 100%;
outline: none;
width: 100%;
margin-bottom: 5px;
}
input[type="text"]:focus, select:focus {
border-color: #a93a65;
box-shadow: 0 0 16px -10px #a93a65;
}
.button-container {
text-align: center;
}
.button {
display: inline-block;
font-family: arial;
padding: 0.6em 1em;
font-size: 14px;
line-height: 1.4;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 3px;
transition-duration: .3s;
-moz-transition-duration: .3s;
-webkit-transition-duration: .3s;
-o-transition-duration: .3s;
-khtml-transition-duration: .3s;
color: #fff;
background: #bd4070;
border: 1px solid #a93a65;
text-decoration: none;
outline: none;
box-shadow: none;
}
.button-small {
font-size: 12px;
padding: 0.5em 1em;
}
.button-large {
font-size: 16px;
padding: 0.6em 1em;
}
.button-disabled {
opacity: 0.3;
cursor: default !important;
}
.button-disabled label {
cursor: default !important;
}
.button:active {
background-image: none;
outline: 0;
-webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
text-decoration: none;
color: #fff;
background: #a93a65;
background-image: none;
outline: none;
box-shadow: none;
transform:translateY(2px);
-webkit-transform:translateY(2px);
}
.button:hover, .button:focus {
text-decoration: none;
color: #fff;
background: #a93a65;
background-image: none;
outline: none;
box-shadow: none;
}
.button label {
display: inline-block;
margin-left: 8px;
vertical-align: middle;
}
.button i {
vertical-align: middle;
}
.content {
margin: 100px 50px;
text-align: center;
}