MySign-Repo/styles.css
2024-10-12 22:26:27 -04:00

139 lines
No EOL
3.2 KiB
CSS

body{
margin: 0;
background: linear-gradient(to right, #252222, #4d4646);
text-align: center;
}
p{
color:white
}
h2{
color:white
}
h1{
color:white
}
.float-on-hover {
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.float-on-hover:hover, .float-on-hover:focus, .float-on-hover:active {
-webkit-transform: translateY(-1.5px);
transform: translateY(-1.5px);
}
.topnav {
background-color: #000000;
overflow: hidden;
opacity: .8;
}
/* Style the links inside the navigation bar */
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
-moz-transition: all .5s ease-in;
-o-transition: all .5s ease-in;
-webkit-transition: all .5s ease-in;
transition: all .5s ease-in;
background: #000000;
padding: 20px;
}
/* Change the color of links on hover */
.topnav a:hover {
background-color: #ddd;
color: black;
}
/* Add a color to the active/current link */
.topnav a.active {
background-color: #04AA6D;
color: white;
}
.social-bar {
display: flex;
justify-content: center;
align-items: center;
}
.social-bar a {
display: inline;
text-align: center;
padding: 10px;
transition: all 0.3s ease;
color: white;
font-size: 20px;
border-radius: 50%;
}
.social-bar a:hover {
color: rgb(218, 212, 221);
-moz-transition: all .2s ease-in;
-o-transition: all .2s ease-in;
-webkit-transition: all .2s ease-in;
transition: all .2s ease-in;
}
.twitter {
background: #11bcff00;
margin: 10px;
}
.youtube {
background: red;
margin: 20px;
}
.github {
background: rgba(140, 0, 255, 0);
margin: 0px;
}
.reddit {
background: rgba(255, 68, 0, 0);
margin: 20px;
}
.twitch {
background: rgb(169, 112, 255);
margin: 20px;
}
.esign {
background-color: rgb(58, 183, 233)
}
.discord {
background-color: rgb(88, 101, 242)
}
.tele {
background-color: rgb(55, 175, 223)
}
.discord-btn {
font-size: 24px;
color: #7289DA;
}
.discord-btn:hover {
color: #fff;
}