horizonevent/src/App.css

48 lines
717 B
CSS
Raw Normal View History

2020-11-13 00:39:11 +00:00
body {
background: transparent url(./img/bg.jpg) no-repeat;
}
2020-11-13 00:39:11 +00:00
.App {
text-align: center;
height: 100vh;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
2020-11-13 00:39:11 +00:00
.App .Main {
height: 60vh;
width: 40%;
background: #fff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
2020-11-13 01:49:05 +00:00
position: relative;
}
2020-11-13 00:39:11 +00:00
.App .Main form {
display: flex;
2020-11-13 01:20:15 +00:00
flex-direction: row;
2020-11-13 00:39:11 +00:00
align-items: center;
2020-11-13 01:20:15 +00:00
justify-content: space-between;
margin-bottom: 20px;
}
.App .Main form * {
margin: 0 5px;
}
2020-11-13 01:32:43 +00:00
.App .Main ul {
text-align: left;
2020-11-13 01:49:05 +00:00
width: 70%;
2020-11-13 01:32:43 +00:00
margin: 0 auto;
}
2020-11-13 01:49:05 +00:00
.Meta {
position: absolute;
right: 10px;
bottom: 10px;
}