forked from CodeYourFuture/HTML-CSS-Coursework-Week3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (98 loc) · 1.71 KB
/
style.css
File metadata and controls
107 lines (98 loc) · 1.71 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
* {
padding: 0px;
margin: 0px;
font-family: "Aboreto", cursive;
color: #fff;
}
body {
background-color: #ffdfe2 !important;
}
.navbar {
background-color: #dd969c !important;
}
footer {
background-color: #dd969c !important;
}
footer span {
font-size: 10px;
}
.p-seccion-1 h1,
p {
color: #8a5626;
}
.p-seccion-1 h1 {
font-size: 20px;
}
.p-seccion-1 p {
font-size: 10px;
}
.eslogan {
display: none;
}
.cajas {
height: 50%;
display: flex;
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
}
.tipo-pastel {
margin-top: 10px;
font-size: 12px;
}
.img-s2 {
width: 100% !important;
height: 75% !important;
border-radius: 50%;
border: 5px solid #fff;
}
@media (min-width: 1024px) {
.eslogan {
display: block;
}
.seccion-1 {
display: flex;
flex-direction: row-reverse !important;
}
.columnas {
display: flex;
flex-direction: row !important;
}
.cajas {
height: 100% !important;
width: 50% !important;
display: flex;
flex-direction: column;
justify-content: center;
}
.p-seccion-1 {
display: flex;
flex-direction: column;
justify-content: center;
}
.p-seccion-1 h1 {
font-size: 40px;
}
.p-seccion-1 p {
font-size: 15px;
}
.img-seccion-1 {
padding: 24px;
}
.caja-1,
.caja-3 {
margin-right: 12px;
}
.caja-2,
.caja-4 {
margin-left: 12px;
}
.img-s2 {
height: 70% !important;
}
.tipo-pastel {
margin-top: 10px;
font-size: 18px;
}
}