-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (89 loc) · 1.81 KB
/
style.css
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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;1,400&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Source Sans Pro', sans-serif;
}
header{
width: 100%;
height: 80px;
margin-top: 40px;
position: fixed;
z-index: 1;
}
.container__menu{
max-width: 1200px;
height: 100%;
margin: auto;
display: flex;
justify-content: space-between;
}
.logo{
height: 100%;
display: flex;
align-items: center;
}
.logo img{
width: 250px;
}
.menu{
display: flex;
align-items: center;
}
.menu ul{
display: flex;
}
.menu ul li{
list-style: none;
margin-left: 36px;
}
.menu ul li a{
text-decoration: none;
font-size: 16px;
color: rgb(110, 13, 117);
text-transform: none;
}
.container__cover{
width: 100%;
height: 800px;
background-image: url(imagenes/fondazo1.png);
background-position: right;
background-repeat: no-repeat;
}
.cover{
max-width: 1200px;
height: 100%;
margin: auto;
display: flex;
align-items: center;
justify-content: space-between;
}
.container__cover .text{
max-width: 400px;
}
.container__cover .text h1{
font-size: 40px;
font-weight: 600;
color:#7a2783
}
.container__cover .text p{
font-size: 16px;
margin-top: 40px;
color:rgb(79, 70, 80)
}
.container__cover .text input{
padding: 10px 80px;
border: none;
font-size: 16px;
border-radius: 40px;
margin-top: 40px;
background: linear-gradient(to right, #8a9af0, #b13cce);
color: #fff;
cursor: pointer;
box-shadow: 1px 1px 30px -12px #7a2783;
transition: all 300ms;
}
.container__cover .text input:hover{
box-shadow: 1px 1px 30px -6px #7733d6;
}