-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilo2.css
117 lines (106 loc) · 1.74 KB
/
estilo2.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
form{
border:0px dashed goldenrod;
height:300px;
width:100%;
}
body{
background-color: black;
color: white;
width: 99%;
height: 90%;
}
label{
font-size: 2em;
}
#cuerpo{
border: 0px solid black;
}
#uno{
border:0px solid green;
}
#uno label, #dos label{
float:left;
}
#uno input,#dos input{
float:right;
height: 2em;
width: 400px;
}
#uno, #dos{
display:inline-block;
padding:3%;
width:94%;
}
#dos{
border:0px solid red;
}
#pagewrap{
border:0px solid black;
margin:0 auto;
padding:5%;
width:80%;
}
/*Botones*/
#boton{
float: right;
}
#servidor{
float: left;
}
/*propiedades compartidas*/
#boton, #servidor{
height: 40px;
width: 400px;
font-size: 18px;
}
/*pie de pagina*/
#footer{
border:0px solid blue;
display:inline-block;
min-height:5px;
width:100%;
}
#footder {
border:0px solid red;
float:right;
}
#footder img{
max-width:100%;
}
#footizq{
border:0px solid green;
float:left;
width:20%;
}
@media screen and (max-width: 720px) , screen and (max-height: 480px) {
form{
height: 200px;
}
label{
font-size: 1.5em;
}
#uno input,#dos input{
float:right;
height: auto;
width: 220px;
}
#boton, #servidor{
height: auto;
width: auto;
font-size: 1.5em;
}
}
@media screen and (max-width: 480px) {
form{
height: 150px;
}
#footizq img{
display: none;
}
#pagewrap{
width: 200px;
}
#uno input,#dos input{
width: 200px;
}
}