mirror of
https://github.com/ClaytonWWilson/CS307-Team24.git
synced 2025-12-16 10:18:48 +00:00
52 lines
724 B
CSS
52 lines
724 B
CSS
/* body {
|
|
|
|
} */
|
|
|
|
.app {
|
|
font-family: "Segoe UI";
|
|
font-size: large;
|
|
text-align: center;
|
|
}
|
|
|
|
.app-logo {
|
|
height: 200px;
|
|
}
|
|
|
|
.authButtons {
|
|
border-radius: 100px;
|
|
box-shadow: none;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
font-family: "Segoe UI";
|
|
line-height: 20px;
|
|
padding: 10px 200px;
|
|
position: relative;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.register {
|
|
background-color: #1da1f2;
|
|
border: 1px solid #fff;
|
|
color: #fff;
|
|
}
|
|
|
|
.login {
|
|
background-color: #fff;
|
|
border: 1px solid #1da1f2;
|
|
color: #1da1f2;
|
|
}
|
|
|
|
.authInput {
|
|
background-color: #eee;
|
|
width:500px;
|
|
height:40px;
|
|
border: 0px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.container {
|
|
margin: 80px auto 0 auto;
|
|
max-width: 1200px;
|
|
} |