Update Hosting

This commit is contained in:
Dzejkobik007
2022-10-03 01:12:31 +02:00
parent 7b37a52f5c
commit 811f92f813
8 changed files with 23 additions and 0 deletions

65
wap/citron/src/style.css Normal file
View File

@@ -0,0 +1,65 @@
* {
padding: 0;
}
html {
background-image: url("citron.jpg");
background-repeat: repeat-y;
background-size: cover;
}
body {
background-color:rgba(0, 0, 0, 0.5);
border-radius: 10px;
padding: 20px;
padding-top: 1px;
}
table {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
border: 3px solid #ddd;
border-left: 0;
border-right: 0;
}
ul {
margin-left: 20px;
}
th, td {
text-align: left;
padding: 8px;
}
.helper {
display: none;
}
.avatar {
vertical-align: middle;
width: 150px;
height: 150px;
border-radius: 50%;
}
.cave {
margin-top: 5px;
display: flex;
}
.cave .image {
width: 160px;
}
.cave .info {
margin-left: 1;
}
@media (max-width : 600px) {
body {
text-align: center;
}
.cave .image {
display: none;
}
.helper {
display: block;
color: red;
}
}