Browse Source

add some styling for login and homepage

master
Stephanie Gredell 1 year ago
parent
commit
aa651452dd
  1. 38
      assets/css/login.css
  2. 12
      assets/css/style.css

38
assets/css/login.css

@ -1,4 +1,38 @@ @@ -1,4 +1,38 @@
body {
background: #fff;
color: #000;
display: flex;
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
height: 100vh; /* Full viewport height */
margin: 0; /* Remove default margin */
background-color: #f4f4f4;
}
.login-page-container {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
width:400px;
box-sizing: border-box;
}
.login-button {
display: block; /* Change to block for vertical alignment */
margin: 10px 0;
padding: 10px 20px;
border-radius: 5px;
color: white;
text-decoration: none;
font-size: 16px;
font-family: "Helvetica Neue", Helvetica, serif;
}
.twitch {
background-color: #9146ff;
}
.google {
background-color: #db4437;
}
.x {
background-color: #1da1f2;
}

12
assets/css/style.css

@ -52,3 +52,15 @@ body { @@ -52,3 +52,15 @@ body {
background-position: center;
background-size: 100%;
}
a.login-banner-link:link,
a.login-banner-link:visited,
a.login-banner-link:hover,
a.login-banner-link:active {
font-family: "Helvetica Neue", Helvetica, serif;
color: #1da1f2;
text-decoration: none;
display: block;
align-self: center;
margin-right: 20px;
}
Loading…
Cancel
Save