You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
512 B
33 lines
512 B
/* styles.css */
|
|
|
|
/* Reset CSS pour normaliser le rendu sur tous les navigateurs */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Arial', sans-serif;
|
|
background-color: #f8f9fa;
|
|
color: #333;
|
|
}
|
|
|
|
.container {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
h1 {
|
|
color: #00DBFF;
|
|
}
|
|
|
|
.list-group-item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
margin-bottom: 20px;
|
|
padding: 15px;
|
|
border: 1px solid #dee2e6;
|
|
border-radius: 5px;
|
|
}
|