forked from ojzamo/html5cr
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathestilos.css
194 lines (176 loc) · 3.07 KB
/
estilos.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
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
172
173
174
175
176
177
178
@font-face
{
font-family: "Carepistola";
src: url("KomikaTitle-webfont.eot");
src: url("KomikaTitle-webfont.eot?#iefix") format("embedded-opentype"),
url("KomikaTitle-webfont.woff") format("woff"),
url("KomikaTitle-webfont.ttf") format("truetype"),
url("KomikaTitle-webfont.svg#KomikaTitleRegular") format("svg");
}
article, footer, header, section
{
display: block;
}
body
{
background: #800;
font-family: "Open Sans", Arial;
font-size: 16px;
margin: 0;
text-align: center;
}
footer, header, section
{
background: white;
border-radius: 0.5em;
box-shadow: rgba(0,0,0, 0.5) 0px 5px 10px;
/*-webkit-border-radius: 0.5em;
-moz-border-radius: 0.5em;
-o-border-radius: 0.5em;
-ms-border-radius: 0.5em;*/
margin: 1em auto;
padding: 1em;
width: 90%;
}
header
{
background: url("logo.png") no-repeat 10px center,
url("mantel.jpg");
color: black;
}
header h1
{
background: rgba(0,0,0,0);
font-family: "Carepistola";
font-size: 3em;
text-shadow: rgba(0,0,0,0.8) 2px 2px 10px;
transition: all 1s linear;
}
header:hover h1
{
color: white;
text-shadow: #DDD 0px 2px 1px,
#BBB 2px 4px 2px,
#DDD 4px 6px 3px,
#DDD 6px 8px 4px;
transform: rotate(7deg) rotateX(30deg) skewX(-5deg);
}
#formulario
{
background: #FCAC00;
border-radius: 0.5em;
color: white;
font-size: 1.8em;
margin: 0.5em auto;
padding: 0.5em;
width: 60%;
}
#formulario input
{
border: none;
display: block;
margin: 0.5em auto;
padding: 0.2em;
width: 70%;
}
#formulario input[type="submit"]
{
background: #721B00;
border-radius: 0.5em;
box-shadow: rgba(0,0,0,0.5) 5px -5px 10px inset;
color: white;
cursor: pointer;
font-weight: bold;
width: 72%;
}
#historia
{
background: #721B00;
border-radius: 0.3em;
box-shadow: #000 2px 2px 10px inset;
color: white;
column-count: 3;
-webkit-column-count: 3;
column-gap: 3em;
column-rule: 1px solid #aaa;
padding: 1em;
text-align: justify;
text-shadow: rgba(0,0,0,0.5) 2px 2px 10px;
}
#historia p:first-child
{
margin-top: 0.5em;
}
#mapa_canvas
{
height: 320px;
width: 500px;
}
#pizzamaker
{
background: #721B00;
box-shadow: #000 0px 5px 30px inset;
display: none;
margin: 0;
padding: 0.2em;
width: 100%;
}
#pizzamaker section
{
display: inline-block;
margin: 0;
vertical-align: top;
}
#pizzamaker #ingredientes
{
margin: 1%;
padding: 0;
width: 68%;
}
#pizzamaker #ingredientes article
{
background: #D88B00;
border-radius: 0.3em;
color: white;
display: inline-block;
font-size: 0.9em;
height: 280px;
margin: 1.5% 0 1% 2%;
padding: 0;
vertical-align: top;
transition: all 0.5s linear;
width: 29%;
}
#pizzamaker #ingredientes article:hover
{
background: #000 !important;
cursor: pointer;
transform: scale(1.2) rotate(365deg);
}
#pizzamaker #ingredientes article:nth-child(odd)
{
background: #AC2800;
}
#pizzamaker #ingredientes article h2
{
margin: 0;
padding: 0;
}
#pizzamaker #ingredientes article p
{
padding: 0.5em 1em;
text-align: left;
}
#pizzamaker #pizza
{
margin: 1% 0;
width: 26%;
}
@media screen and (max-width:800px){
body
{
max-width: 800px;
min-width: 320px;
background: black !important;
}
}