Advertisement
SandboxProject2019

CSS_HOME

Nov 22nd, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.86 KB | None | 0 0
  1. /* body {visibility:hidden} */
  2. body {
  3.     max-height: 100%;
  4.     max-width: 100%;
  5.     padding: 0px;
  6.     min-height: 100vh;
  7.     /* background-color: #55dde0; */
  8.     background-image: url('../images/background.png');
  9.     background-color: #F9A28E;
  10.     background-size: 100%;
  11.     background-position: center;
  12.     background-size: 100%;
  13.     font-family: sans-serif;
  14.     font-size: 1rem;
  15.     color: white;
  16.     text-align: center;
  17.  
  18.     display: flex;
  19.     flex-direction: column;
  20.     justify-content: space-around;
  21.     align-items: center;
  22.    
  23. }
  24.  
  25. #icon-SB {
  26.     float: left;
  27. }
  28. :focus {
  29.     outline: none;
  30. }
  31.  
  32. header {
  33.     padding-bottom: 30px;
  34. }
  35. /* inicio menu superior */
  36.  
  37. #menu ul {
  38.     padding:0px;
  39.     margin:0px;
  40.     background-color: none;
  41.     list-style:none;
  42. }
  43. #menu ul li { display: inline; }
  44.  
  45. #menu ul li a {
  46.     padding: 5px 50px;
  47.     display: inline-block;
  48.  
  49.     /* visual do link */
  50.     background-color:whitesmoke;
  51.     color: #333;
  52.     text-decoration: none;
  53.     border-bottom:3px solid black;
  54.     border-radius: 20px;
  55. }
  56.  
  57. #menu ul li a:hover {
  58.     background-color: rgb(255, 161, 107) ;
  59.     color: whitesmoke;
  60.     border-bottom:3px solid rgb(153, 151, 151);
  61. }
  62. /* final menu superior */
  63. #sandbox_image{
  64.     height: 200px;
  65.     width: auto;
  66.     padding-bottom: 100px;
  67. }
  68.  
  69. section {
  70.     max-width: 300px;
  71.     background-color: white;
  72.     padding: 20px;
  73.     border-radius: 10px;
  74.     color: #666;
  75.     box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  76. }
  77.  
  78. p {
  79.     color: black;
  80. }
  81.  
  82. /* label underline focus color */
  83.  
  84. footer {
  85.     background-color:rgb(153, 151, 151);
  86.     padding: 3px;
  87.     /* padding-bottom:3px; */
  88.     border-radius: 15px;
  89.     font-size: 1rem;
  90. }
  91.  
  92.  
  93. /* Autor */
  94. a:link, a:visited  {
  95.     color: #000000;
  96.     font-weight: bold;
  97.     transition-duration: .5s;
  98. }
  99.  
  100. a:active, a:hover {
  101.     color: blue;
  102. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement