Skip to content

Commit

Permalink
Update redirect.css
Browse files Browse the repository at this point in the history
  • Loading branch information
itisuniqueofficial committed May 10, 2024
1 parent d3e630e commit 7f52db6
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions safelink/css/redirect.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ body {
text-align: center;
}

header,
footer {
header, footer {
padding: 20px 10%;
background-color: #022c43;
opacity: 0.95;
Expand All @@ -35,6 +34,10 @@ main {
}

.redirect-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 20px;
border-radius: 15px;
background-color: rgba(0, 0, 0, 0.6);
Expand Down Expand Up @@ -98,8 +101,7 @@ main {
}
}

p,
h2 {
p, h2 {
margin: 20px 0;
}

Expand All @@ -108,8 +110,20 @@ a {
transition: color 0.3s ease-in-out;
}

a:hover,
a:focus {
a:hover, a:focus {
color: #cccccc;
text-decoration: none;
}

.go-button {
padding: 10px 20px;
background-color: #009ffd;
color: #fff;
border: none;
border-radius: 5px;
font-size: 1.2em;
cursor: pointer;
margin-top: 20px;
display: none; /* Initially hidden */
align-self: center; /* Center button in the flex container */
}

0 comments on commit 7f52db6

Please sign in to comment.