-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
89 lines (69 loc) · 1.6 KB
/
styles.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
body{
font-family: 'Handlee', cursive;
background-color:black;
font-weight: bold;
}
.cardcontainer{
display:block;
background-color:white;
padding:10px;
width: 15cm;
height: 10cm;
margin:auto;
position: absolute;
top: 50%; /*y*/
left: 50%; /*x*/
transform:translate(-50%,-50%); /* translate(x,y)*/
}
/*Cabecera postal*/
.headercard{
overflow:hidden;
}
.headercard img{
float:right;
max-width: 75px;
}
/* Texto postal*/
.bodycard{
overflow:hidden;
}
.textcard{
float:left;
width:45%;
text-align : justify;
font-size:1.2em;
}
/* Informacion envio*/
.addresscard{
float:right;
width:45%;
padding:5px;
left:50%;
}
.addresscard input{
display:block; /* las propiedades afectan a toda la fila de input*/
font-size:18px;
font-style:italic;
border:none;
border-bottom:solid 1px gray;
font-family: 'Handlee', cursive;
font-weight:bold;
width:300px;
}
/* Posicion y propiedades Boton*/
.posbutton{
padding:10px;
text-align:center;
}
.posbutton input{
font-size:1.2em;
background-color:gray;
border:none;
border-bottom: 1px solid black;
font-family: 'Handlee', cursive;
font-weight:bold;
}
.posbutton input:active{
color: pink;
text:"Sendindg";
}