mirror of
https://gitlab.com/niansa/discordlistforbots.git
synced 2025-03-06 20:49:22 +01:00
45 lines
702 B
CSS
45 lines
702 B
CSS
body {
|
|
background-color:#323232;
|
|
color:#FFFFFF;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.container {
|
|
margin: 20%;
|
|
margin-top: 0px;
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.linkButton {
|
|
background-color:transparent;
|
|
border-radius:4px;
|
|
border:2px solid #ffffff;
|
|
display:inline-block;
|
|
cursor:pointer;
|
|
color:#ffffff;
|
|
font-family:Arial;
|
|
font-size:15px;
|
|
text-align:center;
|
|
padding:9px 23px;
|
|
text-decoration:none;
|
|
text-shadow:0px 0px 11px #263666;
|
|
margin:10px;
|
|
}
|
|
.linkButton:hover {
|
|
background-color: #fff;
|
|
color: #263666;
|
|
text-shadow: 0px;
|
|
transform: scale(1.03);
|
|
}
|
|
.linkButton:active {
|
|
position:relative;
|
|
top:1px;
|
|
}
|
|
|
|
.title {
|
|
font-size: 30px
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|