Advertisement
Guest User

Untitled

a guest
Jul 18th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.89 KB | None | 0 0
  1. #liste{
  2.     margin: 10%;
  3. }
  4.  
  5. .btn-link{
  6.     color :white;
  7.  
  8. }
  9. .btn-link:hover{
  10.     color :white;
  11.     text-decoration: none;
  12. }
  13. #cardh{
  14. border-radius:20px;
  15.  
  16. }
  17. .card{
  18.     margin-bottom: 2em;
  19.     border-radius:20px;
  20.     box-shadow: 8px 10px 40px black ;
  21. }
  22. #date{
  23.     float:right;
  24.     margin-right: 0.5em;
  25.     margin-top: 0.5%;
  26. }
  27. #liens{
  28.     margin: 1em;
  29.     margin-bottom: 2em;
  30. }
  31.  
  32. #fond {
  33.     background-image: url(../../data/img/backgroundList.jpg);
  34.     position: fixed;
  35.     width: 100%;
  36.     height: 100%;
  37.     display: block;
  38.     top: 0;
  39.     left: 0;
  40.     background-size: cover;
  41.  
  42.  
  43. /*   Safari */
  44.     -webkit-filter: blur(5px);
  45. /*     Firefox */
  46.     -moz-filter: blur(5px);
  47. /*     Opera */
  48.     -o-filter: blur(5px);
  49. /*     Internet Explorer */
  50.     -ms-filter: blur(5px);
  51. /*     Filtre de floutage CSS3 standard */
  52.     filter: blur(5px);
  53.     z-index: -9999;
  54.  
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement