Вёрстка

This commit is contained in:
Anton Kamalov
2024-10-24 00:26:01 +03:00
parent ae6d4f2ca4
commit caa21d25ff
7 changed files with 90 additions and 14 deletions

49
App/static/css/main.css Normal file
View File

@@ -0,0 +1,49 @@
h1,h2 {
text-align: center;
}
body {
background-color: #87CEEB;
}
button {
background-color: #067936;
border-radius: 10px;
padding: 10px 20px;
border: none;
color: white;
cursor: pointer;
margin-top: 10px;
}
input[type=submit] {
background-color: #f2c464;
}
div.logout, div.login {
position: absolute;
right: 2%;
text-align: center;
}
div.logout button {
margin-top: -5px;
background-color: #ff0000;
}
div.login button {
margin-top: -5px;
background-color: #176917;
}
div.return button{
background-color: chocolate;
}
table {
border: 1px solid black;
border-collapse: collapse;
background: white;
margin: 0 auto;
}
th {
background-color: #d3d3d3;
}
th, td {
border: 1px solid black;
padding: 5px;
text-align: center;
}