-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
102 lines (82 loc) · 1.64 KB
/
style.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
.main-h1 {
text-align: center;
background-color: #84D2D6;
h1 {
font-size: 2rem;
padding: 1rem;
color: #fff;
}
}
body {
font-family: Helvetica, Arial, Sans-serif;
background-color: #3D443C;
}
@mixin boxes ($width, $height, $bcolor) {
width: $width;
height: $height;
background-color: $bcolor;
}
/* ------------------------------------------------------------------------------------------- header */
header {
background-color: #3D443C;
}
.navbar-collapse {
flex-grow: 0 !important;
}
li {
list-style-type: none;
color: #3D443C;
}
a {
color: rgb(255, 255, 255);
text-decoration: none;
}
/* ------------------------------------------------------------------------------------------ footer */
footer {
@include boxes (100%, 250px, #3D443C);
color: #fff;
margin-top: 5rem;
text-align: center;
background-image: linear-gradient(to left, #3D443C, rgb(163, 194, 197));
}
.ftop {
padding-top: 2rem;
padding-bottom: 1.2rem;
h3 {
margin-top: 0.5rem;
}
p {
margin-top: 0.5rem;
}
}
.fbottom {
i {
color: #84D2D6;
font-size: 1.7rem;
padding: 0 0.3rem;
transition: 0.5s ease;
}
i:hover {
color: #3D443C;
}
ul {
display: flex;
justify-content: center;
}
li {
margin-left: 1rem;
}
li:hover {
color: #84D2D6;
}
}
@import "scss/_inicio.scss";
@import "scss/_tienda.scss";
@import "scss/_blog.scss";
@import "scss/_nosotros.scss";
@import "scss/_contacto.scss";