2 changed files with 48 additions and 2 deletions
@ -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; |
||||
} |
||||
Loading…
Reference in new issue