1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 20:14:15 +00:00
webvirtcloud/static/css/signin.css

89 lines
1.6 KiB
CSS
Raw Normal View History

2023-04-27 13:02:29 +00:00
/* body {
background: rgba(203,203,203,1)
} */
.login-box {
margin-top: 25%;
display: block;
align-content: center;
align-items: center;
box-shadow: 0px 0px 30px black;
border-radius: 20px;
padding-top: 30px;
padding-bottom: 20px;
background: linear-gradient(0deg, rgba(203,203,203,1) 0%, rgba(255,255,255,1) 100%);
}
h1 {
color:#212529;
}
h2 {
color:#212529;
}
2015-03-24 14:16:46 +00:00
.form-signin {
max-width: 330px;
padding: 15px;
margin: 50px auto;
}
.form-signin .form-signin-heading,
.form-signin .checkbox {
margin-bottom: 10px;
text-align: center;
}
.form-signin .checkbox {
font-weight: normal;
}
.form-signin .form-control {
position: relative;
font-size: 16px;
height: auto;
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.form-signin .form-control:focus {
z-index: 2;
}
.form-signin input[type="text"] {
2023-04-27 13:02:29 +00:00
margin-bottom: 10px;
border-radius: 5px;
2015-03-24 14:16:46 +00:00
}
.form-signin input[type="password"] {
margin-bottom: 10px;
2023-04-27 13:02:29 +00:00
border-radius: 5px;
}
.btn-success {
background: linear-gradient(45deg, rgba(190,120,255,1) 0%, rgba(43,108,173,1) 34%, rgba(38,173,151,1) 68%, rgba(208,144,71,1) 100%);
transition-duration: 0.5s;
border-color: rgba(11, 12, 13, 0);
border-width: 2px;
border-style: solid;
color:white;
}
.btn-success:hover {
transition-duration: 0.5s;
border-color: goldenrod;
border-width: 2px;
border-style: solid;
2015-03-24 14:16:46 +00:00
}
.logout {
margin: 100px auto;
text-align: center;
}
h1 {
text-align: center;
}
a:hover {
text-decoration: none;
}