Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- @import "_mixins";
-
- *, body{
- margin: 0;
- padding: 0;
- list-style: none;
- box-sizing: border-box;
- font-family: Roboto;
- }
-
- p{
- opacity: 0.8;
- }
- .container{
- @include container;
- }
- img{
- width: 100%;
- }
- .overlay-blue {
- width: 100%;
- height: 100%;
- background-color: $secondary-color;
- opacity: 0.8;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- position: absolute;
- }
- a{
- text-decoration: none;
- }
|