mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2025-04-02 03:13:19 +02:00
85 lines
1.4 KiB
CSS
85 lines
1.4 KiB
CSS
@import "core.css";
|
|
.wrapper {
|
|
max-width: 1024px;
|
|
display: grid;
|
|
grid-template-areas: "content" "footer";
|
|
}
|
|
|
|
.content {
|
|
grid-area: content;
|
|
text-align: center;
|
|
}
|
|
|
|
.content input[type=email],
|
|
.content input[type=password],
|
|
.content input[type=text] {
|
|
width: 258px;
|
|
height: 53px;
|
|
padding: 0px 20px;
|
|
margin: 10px 20px;
|
|
border-radius: 9px;
|
|
font-size: 16px;
|
|
border: solid 1px #f9a826;
|
|
display: block;
|
|
margin: 10px auto;
|
|
}
|
|
|
|
.content input[type=submit] {
|
|
width: 258px;
|
|
height: 53px;
|
|
padding: 0px 20px;
|
|
margin: 10px 20px;
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
border-radius: 9px;
|
|
border: 0px;
|
|
background-color: rgba(255, 168, 0, 0.6);
|
|
color: white;
|
|
}
|
|
|
|
input[type=submit]:hover {
|
|
background-color: #f9a826;
|
|
}
|
|
|
|
.content input:placeholder {
|
|
color: grey;
|
|
}
|
|
|
|
.content label {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.content input[type=checkbox] {
|
|
border: solid 1px #f9a826;
|
|
background-color: #f9a826;
|
|
}
|
|
|
|
.content a {
|
|
color: #f9a826;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.db-warn-msg {
|
|
margin-top: 30px;
|
|
width: 100%;
|
|
}
|
|
|
|
.db-warn-msg p {
|
|
margin: 0 auto;
|
|
width: 500px;
|
|
background-color: #e97450;
|
|
font-size: 15px;
|
|
color: white;
|
|
padding: 15px 30px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.error {
|
|
margin: 10px auto;
|
|
width: 260px;
|
|
font-size: 14px;
|
|
background-color: #e97450;
|
|
padding: 10px 10px;
|
|
border-radius: 9px;
|
|
color: white;
|
|
} |