forked from PlatziMaster/challenge-CSS-03
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilos.css
More file actions
95 lines (80 loc) · 1.34 KB
/
estilos.css
File metadata and controls
95 lines (80 loc) · 1.34 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
:root {
--blue: #6200ee;
--grey: #e5e5e5;
--white: #ffffff;
}
/* 6368530014168917 */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: "Roboto", sans-serif;
}
main {
background-color: var(--grey);
height: 100vh;
}
main .wrapper {
align-items: center;
background-color: var(--blue);
box-shadow: 0 0 14px 0 #b4b0bf;
display: flex;
justify-content: space-around;
height: 60px;
}
main .wrapper .menu {
max-width: 20%;
}
main .wrapper .menu:hover {
color: black;
cursor: pointer;
}
main .wrapper .menu span {
background-color: var(--white);
display: block;
height: 2px;
margin-bottom: 3px;
width: 20px;
}
main .wrapper .menu span:last-child {
margin-bottom: 0;
}
main .wrapper .title {
color: var(--white);
font-size: 12px;
line-height: 0px;
margin-right: 6px;
text-align: left;
max-width: 40%;
}
main .wrapper .icon {
color: var(--white);
margin-left: ;
text-align: right;
width: 30%;
}
main .wrapper .icon i {
margin-left: 15px;
}
main .wrapper .icon i:hover {
cursor: pointer;
}
section {
background-color: var(--white);
height: 300px;
}
/* Seccion desktop */
@media only screen and (min-width: 760px) {
main .wrapper {
margin: 0 auto;
position: relative;
top: 10px;
width: 375px;
}
section {
margin: 0 auto;
width: 375px;
}
}