-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
67 lines (59 loc) · 1.09 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
body, html {
//cambiar color del bar
.nicdark_navigation .var > li > a{
color:blue;
font-family: "Open Sans", sans-serif;
}
font-size: 14px;
width:100% ;
height: 100%;
margin: 0;
padding: 0;
}
section {
background-image: url(https://www.tcs.com/content/dam/tcs/images/discover-tcs/tcs50/timeline/[email protected]/jcr:content/renditions/tcs_1x.jpeg);
width: 100%;
height: 100%;
background-size: cover;
}
header{
//no sirve
background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0));
width: 100%;
position: absolute;
left: 0;
top: 0;
//color de letras del bar
ul{
list-style: none;
position: absolute;
right: 0;
li{
color:#fff;
width: 150px;
float: left;
font-weight: 400;
}
}
}
div{
position: absolute;
width: 500px;
height: 500px;
left: 50%;
top:50%;
margin-top: -150px;
margin-left: -250px;
//color de letras centrales
h1 {
font-size: 25px;
color: #fff;
font-weight: 300;
}
input {
width: 100%;
height: 30px;
padding: 20;
border-radius: 25px;
}
}