101 lines
No EOL
1.7 KiB
HTML
101 lines
No EOL
1.7 KiB
HTML
<!-- css.html -->
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f4;
|
|
margin: 0;
|
|
padding: 0;
|
|
color: #06041f;
|
|
}
|
|
|
|
/* Header settings */
|
|
|
|
header {
|
|
background-color: #06041f;
|
|
padding: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
header img {
|
|
width: 150px;
|
|
height: auto;
|
|
}
|
|
|
|
header h1 {
|
|
color: #47d7ac;
|
|
}
|
|
|
|
/* home */
|
|
.tiles ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-around;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.tiles li {
|
|
background-color: #ffffff;
|
|
border: 2px solid #47d7ac;
|
|
border-radius: 10px;
|
|
padding: 15px;
|
|
width: 180px;
|
|
text-align: center;
|
|
margin: 10px;
|
|
transition: transform 0.3s;
|
|
}
|
|
|
|
.tiles li:hover {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.tiles a {
|
|
text-decoration: none;
|
|
color: #06041f;
|
|
font-size: 16px;
|
|
display: block;
|
|
}
|
|
|
|
.tiles .tile-icon {
|
|
font-size: 40px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
border: 1px solid #ddd;
|
|
padding: 8px;
|
|
text-align: center;
|
|
}
|
|
|
|
th {
|
|
background-color: #47d7ac;
|
|
}
|
|
|
|
td {
|
|
background-color: #fff;
|
|
}
|
|
|
|
h1 {
|
|
color: #06041f;
|
|
}
|
|
|
|
button {
|
|
background-color: #47d7ac;
|
|
color: #fff;
|
|
padding: 8px 16px;
|
|
border: none;
|
|
cursor: pointer;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #35a895;
|
|
}
|
|
</style> |