You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
637 B
CSS
49 lines
637 B
CSS
6 years ago
|
body {
|
||
|
color:black;
|
||
|
background-color:white;
|
||
|
background-image:url(background.jpg);
|
||
|
background-repeat:no-repeat;
|
||
|
background-size:104%;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
#container{
|
||
|
margin : 5% 15% 5% 15%;
|
||
|
background-color : white;
|
||
|
border : 2px solid black;
|
||
|
}
|
||
|
|
||
|
h1{
|
||
|
text-align : center;
|
||
|
font-size : 250%;
|
||
|
}
|
||
|
|
||
|
#form{
|
||
|
text-align:center;
|
||
|
}
|
||
|
|
||
|
#avis_laisse{
|
||
|
resize: none
|
||
|
}
|
||
|
|
||
|
#submit{
|
||
|
margin-bottom: 1%;
|
||
|
}
|
||
|
|
||
|
.rating {
|
||
|
direction: rtl;
|
||
|
}
|
||
|
.rating a {
|
||
|
color: #aaa;
|
||
|
text-decoration: none;
|
||
|
font-size: 3em;
|
||
|
transition: color .4s;
|
||
|
}
|
||
|
.rating a:hover,
|
||
|
.rating a:focus,
|
||
|
.rating a:hover ~ a,
|
||
|
.rating a:focus ~ a {
|
||
|
color: orange;
|
||
|
cursor: pointer;
|
||
|
}
|