-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilo.css
More file actions
178 lines (142 loc) · 2.18 KB
/
estilo.css
File metadata and controls
178 lines (142 loc) · 2.18 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
172
173
174
175
176
177
178
* {
padding:0px;
margin:0px;
}
header{
background-color:#CDBE70;
text-align: center;
font-family: fantasy;
border:5px solid #A0522D;
}
header p {
border: 3px solid #F0E68C;
text-shadow: 1px 1px 2px black;
font-size: 2.1875em;
color:#A0522D;
padding: 5px 2px;
letter-spacing: 1px;
margin: 7px 7px;
}
#botaoIniciar{
width: 150px;
margin-top: 40px;
margin-right: auto;
margin-left: auto;
background-color: #A0522D;
border:5px outset gray;
}
#botaoIniciar:hover{
border:5px inset gray;
}
#faraoImg2{
height: 50%;
float: right;
padding:10px 10px;
opacity: 0.7;
}
#faraoImg1{
height: 50%;
float: left;
padding: 10px 10px;
opacity: 0.7;
}
#apresentacao{
margin-top: 100px;
margin-bottom: 100px;
}
#submit{
width: 150px;
background-color:#A0522D;
color:white;
border:outset 5px #808080;
padding: 10px;
}
#submit:hover{
border:inset 5px #808080;
}
#banner{
width:50%;
height:290px;
}
#resultado{
margin-top: 80px;
}
.ocultar{
display: none;
}
.enunciado{
font-weight: bold;
text-indent: 10px;
}
body{
background-image: url("./imagens/areia.jpg");
}
div{
text-align: center;
}
form {
margin-top: 100px;
}
fieldset input{
margin-left: 10px;
}
input,label:hover{
cursor:pointer;
}
legend{
text-align: left;
text-indent: 10px;
text-shadow: 1px 1px 1px black;
color:brown;
}
article {
border-left: 3px double brown;
border-right: 3px double brown;
margin-top: 20px;
margin-bottom: 10px;
margin-right: auto;
margin-left: auto;
width: 80%;
background-color:#E8E8E8;
padding: 40px;
box-shadow: 1px 1px 3px brown;
}
form article:hover{
box-shadow: 1px 1px 20px black;
}
#apresentacao p {
text-indent:10px;
font-family:monospace;
font-size: 17px;
}
footer {
background-color:#F0E68C;
text-align: center;
height: 80px;
margin-top: 100px;
border-top: 3px solid #A0522D;
font-size: 0.75em;
}
footer p{
padding:20px;
}
/* Media Queries*/
@media screen and (max-width:480px){/* Smartphones no formato paisagem com tela pequena*/
#banner{
height: 90%;
}
#faraoImg2{
display: none;
}
#faraoImg1{
float: none;
text-align: center;
height: 10%;
}
#saudar{
clear: both;
}
#apresentacao{
text-align: justify;
}
}