mirror of
https://grond.iut-fbleau.fr/stiti/SAE_2.02
synced 2024-11-10 05:11:42 +01:00
70 lines
1.0 KiB
CSS
70 lines
1.0 KiB
CSS
|
/* Reset CSS */
|
||
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
/* Body styles */
|
||
|
body {
|
||
|
font-family: Arial, sans-serif;
|
||
|
background-color: #f4f4f4;
|
||
|
color: #333;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
max-width: 800px;
|
||
|
margin: 0 auto;
|
||
|
padding: 20px;
|
||
|
}
|
||
|
|
||
|
h1, h2 {
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.table {
|
||
|
width: 100%;
|
||
|
border-collapse: collapse;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.table th, .table td {
|
||
|
padding: 8px;
|
||
|
border: 1px solid #ddd;
|
||
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
.table th {
|
||
|
background-color: #f2f2f2;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.btn {
|
||
|
display: inline-block;
|
||
|
padding: 8px 16px;
|
||
|
border: none;
|
||
|
border-radius: 4px;
|
||
|
background-color: #7700ff;
|
||
|
color: #fff;
|
||
|
text-decoration: none;
|
||
|
cursor: pointer;
|
||
|
transition: background-color 0.3s ease;
|
||
|
}
|
||
|
|
||
|
.btn:hover {
|
||
|
background-color: #3c0c72;
|
||
|
}
|
||
|
|
||
|
.btn-secondary {
|
||
|
background-color: #6c757d;
|
||
|
}
|
||
|
|
||
|
.btn-secondary:hover {
|
||
|
background-color: #545b62;
|
||
|
}
|
||
|
|