-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle-FINISHED.css
117 lines (108 loc) · 1.96 KB
/
style-FINISHED.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
110
111
112
113
114
115
116
117
html {
box-sizing: border-box;
background: #eeeeee;
font-family: 'helvetica neue';
font-size: 20px;
font-weight: 200;
}
body {
margin: 0;
}
*, *:before, *:after {
box-sizing: inherit;
}
.highlight {
transition: all 0.2s;
border-bottom: 2px solid rgba(255, 255, 255, 0);
position: absolute;
top: 0;
background: rgba(255, 255, 255, 0);
left: 0;
z-index: 0.9;
border-radius: 10px;
display: block;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.89);
}
.site-wrap {
max-width: 700px;
margin: 70px auto;
background: white;
padding: 40px;
text-align: justify;
box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
transform: scale(0.98);
transition: transform 0.5s;
}
body.fixed-nav .site-wrap {
transform: scale(1);
}
header {
text-align: center;
height: 50vh;
/*background: url(https://source.unsplash.com/GKN6rpDr0EI/960x640) bottom center no-repeat;*/
background: url(degradado.jpg);
background-size: cover;
display: flex;
align-items: center;
justify-content: center;
}
h1 {
color: white;
font-size: 7vw;
text-shadow: 3px 4px 0 rgb(0 0 0 / 20%);
}
nav {
background: rgba(8, 8, 8, 0.877);
top: 0;
width: 100%;
transition:all 0.5s;
position: relative;
z-index: 1;
}
body.fixed-nav nav {
position: fixed;
box-shadow: 0 5px 0 rgba(0,0,0,0.1);
}
.Caja-imagenPerfil{
float: left;
margin-left: 60px;
margin-top: 10%;
width: 200px;
height: 250px;
box-shadow: 10px 10px 20px black;
}
nav ul {
margin: 0;
padding: 0;
list-style: none;
display: flex;
}
nav li {
flex: 1;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
li.logo {
max-width: 0;
overflow: hidden;
background: white;
transition: all 0.5s;
font-weight: 600;
font-size: 30px;
}
li.logo a {
color: black;
}
.fixed-nav li.logo {
max-width: 500px;
}
nav a {
text-decoration: none;
padding: 20px;
display: inline-block;
color: white;
transition: all 0.2s;
text-transform: uppercase;
}