forked from orbit-oss/flask
39 lines
593 B
CSS
39 lines
593 B
CSS
html {
|
|
background: #eee;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Verdana', sans-serif;
|
|
font-size: 15px;
|
|
margin: 30px auto;
|
|
width: 720px;
|
|
background: white;
|
|
padding: 30px;
|
|
}
|
|
|
|
h1 {
|
|
margin: 0;
|
|
}
|
|
|
|
h1, h2, a {
|
|
color: #d00;
|
|
}
|
|
|
|
div.authbar {
|
|
background: #eee;
|
|
padding: 0 15px;
|
|
margin: 10px -15px;
|
|
line-height: 25px;
|
|
height: 25px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
div.signinprogress {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(255, 255, 255, 0.8) url(spinner.png) center center no-repeat;
|
|
font-size: 0;
|
|
}
|