4
1
Fork 0
This repository has been archived on 2019-02-05. You can view files and clone it, but cannot push or open issues or pull requests.
Cheaterliste/style.css

74 lines
1.2 KiB
CSS
Raw Normal View History

2017-03-29 19:00:22 +00:00
body {
background-size: cover;
background-image: url(bg.jpg);
2017-03-31 22:54:08 +00:00
font-family: 'Lato', sans-serif;
2017-03-29 19:00:22 +00:00
}
table, td, th {
text-align: center;
}
td, th {
padding: 1px 15px;
2017-03-31 22:54:08 +00:00
font-family: 'Lato', sans-serif;
2017-03-29 19:00:22 +00:00
}
table {
border-collapse: collapse;
width: 100%
}
tr:last-child {
border-bottom: 2px solid rgba(255,255,255, 1) !important;
}
th {
color: #DDDDDD;
background: rgba(18,18,18, 0.3) !important;
border-bottom: 2px solid #DDDDDD;
border: 2px solid #DDDDDD;
}
td {
padding: 10px;
border: 2px solid #DDDDDD;
border-bottom: 2px solid rgba(255,255,255, 0.1);
color: #DDDDDD;
}
tr {
background: rgba(18,18,18, 0.6) !important;
}
.profil {
text-align: left !important;
}
a:link{
color: white;
}
a:visited{
color: white;
}
table.center {
margin-left: auto;
margin-right: auto;
margin-top: 200px;
}
2017-04-04 18:01:07 +00:00
.form {
max-width: 360px;
margin: 0 auto;
padding: 30px;
padding-bottom: 0px;
background: rgba(18,18,18, 0.3);
border: 2px solid #DDDDDD;
}
.form input {
width: 100%;
margin: 0 0 15px;
box-sizing: border-box;
font-size: 16px;
padding: 10px;
border: 2px solid #DDDDDD;
color: #000000;
background-color: white;
}
.form button:hover,.form button:active,.form button:focus {
background: #43A047;
2017-03-29 19:00:22 +00:00
}