-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtp-final.scss
More file actions
137 lines (123 loc) · 2.51 KB
/
Copy pathtp-final.scss
File metadata and controls
137 lines (123 loc) · 2.51 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
$red-boost: rgb(238,65,55);
@keyframes solicitar-demo {
from {background-color:transparent; color:$red-boost};
to {background-color:$red-boost; color:white};
}
@keyframes delay-navegador {
from {color:white};
to {color:$red-boost}
}
* {
margin:0;
padding:0;
font-family:'Open Sans', sans-serif;
}
#home {
background: linear-gradient( rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6) ), url(Home2.jpeg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
div h1 {
color:white;
font-size: 3em;
text-transform: uppercase;
letter-spacing: 2px;
text-align:center;
}
div h3 {
color:white;
font-weight: 300;
font-style:italic;
text-align:center;
}
}
#navbar {
background: none;
border:none;
padding:50px;
ul {
li a{
padding:10px 30px;
background-color:transparent;
color:white;
&:hover {
color:$red-boost;
animation-name: delay-navegador;
animation-duration:0.4s;
}
&#solicitar-demo {
border:$red-boost 1px solid;
border-radius: 5px;
color:$red-boost;
&:hover {
animation-name: solicitar-demo;
animation-duration:0.4s;
animation-fill-mode: forwards;
}
}
}
}
div div a #hamburguer {
background-color:gray !important;
}
}
#logo-boost {
width:140px;
}
/* Sección Soluciones */
#seccion-soluciones {
height:80vh;
display:flex;
justify-content:space-around;
flex-direction:column;
align-content:center;
div {
text-align: center;
h1 {
margin:auto;
color:rgb(90,90,90);
margin-top: 20px;
}
}
.separador-soluciones {
display:flex;
flex-direction: row;
justify-content: center;
flex-wrap:wrap;
height: 70%;
.solucion {
border: 1px rgb(235,235,235) solid;
border-radius:5px;
width: 15%;
height:80%;
min-width: 225px;
min-height: 225px;
margin: 30px;
padding:30px;
background:rgb(242,242,242);
display: flex;
justify-content: space-between;
flex-direction: column;
/*align-content:center;*/
align-items:center;
text-align: center;
transition: all 0.2s;
.logo-solucion{
width: 180px;
}
&:hover {
background:rgb(230,230,230);
border: rgb(210,210,210);
-webkit-box-shadow: 0px 0px 10px 0px rgba(100,100,100,1);
-moz-box-shadow: 0px 0px 10px 0px rgba(100,100,100,1);
box-shadow: 0px 0px 10px 0px rgba(100,100,100,1);
}
}
}
}