-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilos.css
More file actions
171 lines (168 loc) · 2.87 KB
/
estilos.css
File metadata and controls
171 lines (168 loc) · 2.87 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
html {
box-sizing: border-box;
font-size: 16px;
font-family: sans-serif;
overflow-x: hidden;
scroll-padding-top: 0;
scroll-behavior: smooth;
}
*,
*::after,
*::before {
box-sizing: inherit;
margin: 0;
padding: 0;
}
#navbar {
position: fixed;
top: 0;
height: 15vh;
width: 100%;
background-color: #111;
}
#navbar ul {
display: flex;
flex-direction: row;
justify-content: flex-end;
}
#navbar ul li {
list-style: none;
padding: 35px 60px 0 0;
font-size: 150%;
}
.nav-link {
text-decoration: none;
color: #fff;
text-shadow: 3px -3px 2px grey;
}
.nav-link:hover {
text-shadow: 3px -3px 2px grey;
font-weight: bold;
}
#welcome-section {
height: 85vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-image: linear-gradient(
155deg,
#303030 10%,
#e46363 40% 60%,
#303030 90%
);
/* #303030 10%,
#e46363 40% 60%,
#303030 90%*/
}
#welcome-section h1 {
color: #fff;
font-size: 300%;
text-align: center;
text-shadow: 3px -3px 2px grey;
}
#welcome-section p {
color: rgba(210, 210, 14, 1);
font-size: 120%;
letter-spacing: 1.6vh;
text-shadow: 3px -3px 2px #000;
}
main {
padding-top: 15vh;
background-color: rgb(30, 30, 30);
}
#projects {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: repeat(2, 1fr);
column-gap: 40px;
row-gap: 40px;
background-color: rgb(30, 22, 51);
padding-bottom: 70px;
padding-top: 100px;
padding: 100px 20px 70px 20px;
background-image: linear-gradient(
45deg,
#303030 10%,
#e46363 40% 60%,
#303030 90%
);
}
#projects img {
width: 100%;
height: 300px;
object-fit: cover;
}
figure {
background-color: #303030;
display: flex;
flex-direction: column;
border: solid 2px #fff;
border-radius: 10px;
}
figcaption {
text-align: center;
color: #fff;
width: 100%;
height: auto;
padding: 10px 0;
}
#div-link {
width: 130px;
height: 50px;
background-color: #303030;
margin: 30px auto 0 auto;
grid-column: 1/3;
border: solid 2px #fff;
border-radius: 10px;
}
#profile-link,
#profile-freecode {
color: #fff;
text-decoration: none;
display: block;
text-align: center;
padding: 14px 0;
}
#profile-freecode {
padding: 5px 0 0 0;
}
footer {
height: 85vh;
width: 100%;
}
.trabajemos {
height: 100vh;
width: 100%;
color: #fff;
text-align: center;
padding: 40vh 0 0 0;
background-image: linear-gradient(
155deg,
#303030 10%,
#e46363 40% 60%,
#303030 90%
);
}
.redes {
color: rgba(210, 210, 14, 1);
display: inline-block;
padding: 45px 20px;
font-weight: 800;
text-shadow: 3px -3px 2px #000;
}
@media (max-width: 550px) {
#navbar {
height: 22vh;
}
#navbar ul {
flex-direction: column;
justify-content: center;
align-items: center;
height: 130px;
}
#navbar ul li {
list-style: none;
padding: 7px 0;
}
}