57 lines
882 B
CSS
57 lines
882 B
CSS
|
body {
|
||
|
background-size: cover;
|
||
|
background-image: url(bg.jpg);
|
||
|
}
|
||
|
|
||
|
table, td, th {
|
||
|
text-align: center;
|
||
|
}
|
||
|
td, th {
|
||
|
padding: 1px 15px;
|
||
|
font-family: 'Lato', Arial, sans-serif;
|
||
|
}
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
form {
|
||
|
margin-left: 50%;
|
||
|
margin-right: 50%;
|
||
|
margin-top: 250px;
|
||
|
}
|