99 lines
2.4 KiB
CSS
99 lines
2.4 KiB
CSS
|
/* took only the essential parts of the bootstrap css library to ensure that it is possible for everyone to read the code */
|
||
|
|
||
|
body {
|
||
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||
|
font-size: 14px;
|
||
|
line-height: 1.42857143;
|
||
|
color: #333333;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
margin: 0 0 10px;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: #337ab7;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.form-control {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
padding: 6px 12px;
|
||
|
font-size: 14px;
|
||
|
line-height: 1.42857143;
|
||
|
color: #555555;
|
||
|
background-color: #fff;
|
||
|
background-image: none;
|
||
|
border: 1px solid #ccc;
|
||
|
border-radius: 4px;
|
||
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||
|
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
||
|
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
||
|
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
|
||
|
transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
|
||
|
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
||
|
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
|
||
|
}
|
||
|
|
||
|
|
||
|
.btn {
|
||
|
display: inline-block;
|
||
|
margin-bottom: 0;
|
||
|
font-weight: normal;
|
||
|
text-align: center;
|
||
|
white-space: nowrap;
|
||
|
vertical-align: middle;
|
||
|
-ms-touch-action: manipulation;
|
||
|
touch-action: manipulation;
|
||
|
cursor: pointer;
|
||
|
background-image: none;
|
||
|
border: 1px solid transparent;
|
||
|
padding: 6px 12px;
|
||
|
font-size: 14px;
|
||
|
line-height: 1.42857143;
|
||
|
border-radius: 4px;
|
||
|
-webkit-user-select: none;
|
||
|
-moz-user-select: none;
|
||
|
-ms-user-select: none;
|
||
|
user-select: none;
|
||
|
}
|
||
|
|
||
|
.btn-success {
|
||
|
color: #fff;
|
||
|
background-color: #5cb85c;
|
||
|
border-color: #4cae4c;
|
||
|
}
|
||
|
|
||
|
button, html input[type="button"], input[type="reset"], input[type="submit"] {
|
||
|
-webkit-appearance: button;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
button, select {
|
||
|
text-transform: none;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
overflow: visible;
|
||
|
}
|
||
|
|
||
|
button, input, optgroup, select, textarea {
|
||
|
color: inherit;
|
||
|
font: inherit;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
*:before, *:after {
|
||
|
-webkit-box-sizing: border-box;
|
||
|
-moz-box-sizing: border-box;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
.form-inline .form-control {
|
||
|
display: inline-block;
|
||
|
width: auto;
|
||
|
vertical-align: middle;
|
||
|
}
|