forked from CodeYourFuture/HTML-CSS-Coursework-Week3
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (76 loc) · 1.41 KB
/
style.css
File metadata and controls
88 lines (76 loc) · 1.41 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
/* Add your styling here */
body{
margin: 0;
}
a {
text-decoration: none;
}
#navbar{
display: flex;
flex-direction: row;
justify-content: space-between;
background-color: gray;
margin: 0;
position: fixed;
overflow: hidden;
top: 0;
}
#texto-navbar {
display: flex;
flex-direction: column;
justify-content: flex-end;
margin: 0;
line-height: 1vh;
}
#links {
display: flex;
flex-direction: row;
justify-content: flex-end;
}
.button-enlaces {
border-radius: 0;
border: none;
background-color: rgb(97, 94, 94);
color: white;
width: 12vw;
margin: 10px 10px;
}
#welcome {
display: flex;
flex-direction: row;
justify-content: flex-start;
flex-wrap: wrap;
margin: 0 8vw;
}
#welcome-texto{
color: rgb(162, 160, 160);
font-family: Arial, Helvetica, sans-serif;
text-align: justify;
margin-left: 20px;
}
#welcome-texto > h1 {
text-align: right;
}
#tartas {
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
margin: 0 8vw;
}
.tarta-image {
margin: 0 5px;
}
footer{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 5vh;
background-color: rgb(192, 191, 191);
color: rgb(134, 132, 132);
font-family: Arial, Helvetica, sans-serif;
text-align: justify;
}
#enlaces-footer {
}