Skip to content

Commit

Permalink
style updates
Browse files Browse the repository at this point in the history
  • Loading branch information
orangewolf committed Aug 6, 2023
1 parent 0c25af2 commit 0d4d0b5
Showing 1 changed file with 12 additions and 21 deletions.
33 changes: 12 additions & 21 deletions app/assets/stylesheets/single_signon.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,37 +3,37 @@
// You can use Sass (SCSS) here: http://sass-lang.com/

.col-centered {
background-color: #ff0000;
margin: 80px auto;
text-align: center;
background-color: red;
}

.sso-button {
background-color: #ffffff;
border: 1px solid;
margin: 100px 0 200px;
min-height: 300px;
padding: 20px 50px;
background-color: white;
border: 1px solid;
margin: 100px 0 200px 0;
}

.sso-button-fake {
margin-top: 100px;
}

.loader {
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #0A1F61;
width: 120px;
height: 120px;
-webkit-animation: spin 2s linear infinite; /* Safari */
-webkit-animation: spin 2s linear infinite; // Safari
animation: spin 2s linear infinite;
border-radius: 50%;
border-top: 16px solid #0a1f61;
border: 16px solid #f3f3f3;
color: #f3f3f3;
font-size: 11px;
height: 120px;
margin: 55px auto 150px;
text-indent: -99999em;
margin: 55px auto 150px auto;
width: 120px;
}
/* Safari */
// Safari
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
Expand All @@ -42,12 +42,3 @@
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

#alertModal .modal-footer button {
display: block;
margin: 0 auto;
}

#alertModal .modal-title {
color: red;
}

0 comments on commit 0d4d0b5

Please sign in to comment.