Advertisement
Jvsierra

Style

Oct 30th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.86 KB | None | 0 0
  1.  
  2.             *{text-align: justify;
  3.               font-family: calibri, sans-serif;
  4.               font-size: 30px;}
  5.            
  6.             #principal{width: 95%;
  7.                        height: 700px;
  8.                        margin: 0 auto;
  9.                        position: relative;
  10.                        background-color: beige;}
  11.            
  12.             #topo{width: 100%;
  13.                   height: 20%;
  14.                   background-color: white ;}
  15.            
  16.             #conteudo{width: 100%;
  17.                       height: 62%;
  18.                       float: left;
  19.                       background-color: white;
  20.                       z-index: 0;}
  21.            
  22.             #conteudo p
  23.             {
  24.                 font-size:15px;
  25.             }
  26.            
  27.             .centraliza
  28.             {
  29.                 margin:0 auto;
  30.                 width: 30%;
  31.             }
  32.            
  33.            #titulo
  34.            {
  35.             position: relative;
  36.             height:5%;
  37.             width: 100%;    
  38.             border-top: 2px solid black;
  39.             border-bottom: 2px solid black;
  40.             background-color:gray;
  41.             color:black;
  42.            }
  43.            
  44.            #titulo h1
  45.            {
  46.             margin-top:0.09%;
  47.             font-size:30px;
  48.             text-align:center;
  49.            }
  50.            
  51.                    
  52.             #rodape{
  53.                     border-top:2px solid black;
  54.                     width: 100%;
  55.                     height: 8%;
  56.                     float: left;
  57.                     background-color: green;}  
  58.             /*-------------------- Classes do Menu -----------------*/
  59.            
  60.             #barramenu{
  61.                     width: 100%;
  62.                        height: 35%;
  63.                        position: relative;}
  64.            
  65.             #barramenu nav{
  66.                         padding-top: 1.75%;
  67.                         padding-right:4%;
  68.                         width: 10%;
  69.                            height: 100%;
  70.                            color: black;
  71.                            float: right;
  72.                            position: relative;
  73.                            z-index:10;
  74.                            }
  75.                            
  76.             #barramenu nav:hover{
  77.                                  position: relative;
  78.                                  transition: height 0.2s;
  79.                                 z-index: 10;}
  80.            
  81.             .centraliza
  82.             {
  83.                 width: auto;
  84.                 margin: 0 auto;
  85.             }
  86.  
  87.  
  88.             .direita
  89.             {
  90.                 float:right;
  91.             }
  92.            
  93.             a
  94.             {
  95.                 text-decoration: none;
  96.                 color:black;
  97.             }
  98.            
  99.             a:hover{
  100.                 color:orange;
  101.                 text-decoration: none;
  102.             }
  103.  
  104.             a:visited
  105.             {
  106.                 color:black;
  107.                 text-decoration:none;
  108.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement