73 lines
No EOL
1.2 KiB
CSS
73 lines
No EOL
1.2 KiB
CSS
/* t8.css - HTML 5 */
|
|
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
background-color: #f5f5f5;
|
|
color: #333;
|
|
margin: 0;
|
|
padding: 80px;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
color: #16a085;
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
button {
|
|
padding: 20px 40px;
|
|
border: none;
|
|
background-color: #e74c3c;
|
|
color: white;
|
|
cursor: pointer;
|
|
border-radius: 50px;
|
|
font-size: 22px;
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
|
|
transition: background-color 0.3s ease, transform 0.2s ease;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #ff9900;
|
|
transform: translateY(-3px);
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
border-radius: 20px;
|
|
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
border: 2px solid #ff9900;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
td, th {
|
|
padding: 25px;
|
|
text-align: left;
|
|
border: 1px solid #ff9900;
|
|
font-size: 18px;
|
|
}
|
|
|
|
td {
|
|
background-color: #ecf0f1;
|
|
}
|
|
|
|
th {
|
|
background-color: #ff9900;
|
|
color: white;
|
|
}
|
|
|
|
table tr:hover {
|
|
background-color: #f1f1f1;
|
|
}
|
|
table.table_magasin{
|
|
width: 150px;
|
|
padding: 12px;
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
|
|
} |