123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- @import url('https://fonts.googleapis.com/css?family=Raleway');
- @import url('https://fonts.googleapis.com/css?family=Quicksand');
- @import url('https://fonts.googleapis.com/css?family=Source+Code+Pro');
- @import url('https://fonts.googleapis.com/css?family=Press+Start+2P');
- @font-face {
- font-family: 'Segoe UI Emoji';
- font-style: normal;
- src: url("seguiemj.ttf")
- }
- :root{
- --tempo-a: 0.2s;
- --tempo-b: 0.3s;
- --tempo-c: 0.5s;
- --tempo-d: 0.8s;
- --tempo-d: 1.3s;
- }
- *{
- transition-duration:0.6s;
- }
- html, body{
- height: 100%;
- width:100%;
- }
- body{
- transition-duration:1s;
- background:#fff;
- width:100%;
- margin:0;
- animation-name:opac;
- animation-duration: var( --tempo-a );
- }
- a, a:hover{
- text-decoration:none;
- }
- .cabecalho{
- background-color:#000;
- height:14em;
- width:100%;
- position:relative;
- display:block;
- left:0;
- right:0;
- top:0;
- animation-name:opac;
- animation-duration: var( --tempo-b );
- z-index:2;
- }
- .imags{
- margin:2px;
- display:inline-block;
- }
- .titles{
- background:#000;
- font-size:30px;
- position: relative;
- display:inline;
- margin-bottom:50%;
- color: #fff;
- z-index:2;
- animation-name:opac;
- animation-duration: var( --tempo-c );
- }
- .corpo{
- background-color:#fff;
- position:relative;
- min-height: 100%;
- height: 100%;
- margin: 0 auto -50px;
- }
- #links{
- position:absolute;
- height:30em;
- width:25%;
- background:#444;
- color:#fff;
- padding-top:70px;
- display:inline;
- float:left;
- text-align:center;
- z-index:2;
- }
- #linksbg{
- position:fixed;
- height:100%;
- top:0;
- bottom:0;
- width:25%;
- background:#444;
- color:#fff;
- float:left;
- z-index:1;
- }
- #links a{
- text-decoration:underline;
- color:#666;
- font-size:20px;
- font-family:"Quicksand", sans-serif;
- text-decoration:none;
- text-align:justify;
- }#links a:hover{
- text-decoration:underline;
- color:#fff;
- font-size:20px;
- font-family:"Quicksand", sans-serif;
- text-decoration:none;
- text-align:justify;
- text-decoration:none;
- }
- #conteudo{
- width:74%;
- background:#fff;
- float:right;
- padding:20px;
- text-align:center;
- padding-top:20px;
- padding-left:10px;
- padding-right:10px;
- animation-name:opac;
- animation-duration: var( --tempo-d );
- }
- #rodape{
- position:relative;
- height: 100px;
- width:75%;
- color: #fff;
- background-color: #000;
- float:right;
- text-align:center;
- padding:20px;
- padding-bottom:0px;
- z-index:0;
- }
- text-decoration:none;
- }
- /*############################### Code, para usar quando quiser destacar algum código*/
- #copyr{
- color:white;
- font-size: 12px;
- position:relative;
- text-align:center;
- }
- .icon{
- margin:0;
- }
- .toper{
- display:none;
- }
- /*############################### aqui é para celulares e tal.. */
- @media (max-width:800px){
- html, body{
- width:100%;
- }
- .cabecalho{
- z-index:4;
- }
- .titles{
- font-size:30px;
- display:inline-block;
- color: #fff;
- }
- .toper{
- position:fixed;
- left:0;
- top:0;
- right:0;
- display:flex;
- justify-content:space-between;
- z-index:3;
- background-color:#111;
- }
- #links{
- display:none;
- }
- #linksbg{
- display:none;
- }
- #mobil{
- position:fixed;
- height:30em;
- width:30%;
- background:#444;
- color:#fff;
- padding-top:70px;
- float:left;
- text-align:center;
- display:fixed;
- min-width:50%;
- max-width:80%;
- height:100%;
- top:0;
- bottom:0;
- }
- #mobil a{
- text-decoration:underline;
- color:#666;
- font-size:20px;
- font-family:"Quicksand", sans-serif;
- text-decoration:none;
- text-align:justify;
- }
- #rodape{
- margin:auto;
- width:100%;
- text-align:center;
- padding:0;
- }
- #conteudo{
- margin:auto;
- width: 93.5%;/*Visual padrão de tamanho*/
- text-align:center;
- padding-left:10px;
-
- }
-
- }
- .artig{
- color:#000;
- }
- .imags{
- opacity:0.7;
- }
- .imags:hover{
- opacity:1;
- }
|