-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformulario.css
119 lines (100 loc) · 1.41 KB
/
formulario.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
form{
margin: 0 20%;
}
fieldset{
margin: 10px 0;
border: 0;
padding: 0;
}
legend{
text-transform: uppercase;
font-size: 110%;
font-weight: bold;
padding-bottom: 3px;
border-bottom: 1px solid #000046;
width: 100%;
}
ol{
list-style-type: none;
margin: 0 2%;
}
label{
float: left;
width: 20%;
margin: 10px 20px 0;
}
input[type=file]{
width: 50%;
margin: 7px 18px;
}
input, select{
float: left;
width: 30%;
margin: 5px;
}
.form-item-1:after{
content: "";
display: table;
clear: both;
}
.form-item-2{
float: left;
}
.form-item-2 label{
width: 100%;
}
.form-item-3 label{
width: 100%;
}
.form-item-3 input{
width: 80%;
margin: 1% 2%;
}
.foto-form {
position: relative;
bottom: 120px;
right: 80px;
width: 18%;
padding: 2% 0;
border: 1px solid #000046;
float: right;
}
.valoracion{
float: left;
margin: 5px 20px;
}
.valoracion-leido {
content: "";
clear: both;
display: table;
margin-bottom: 2%;
}
textarea{
width: 90%;
margin: 5px 20px;
}
span#current {
margin: 0 0 0 3%;
}
.nota, input[type=radio]{
width: auto;
margin: 0 5px;
}
input[type=submit]{
margin: 40px 100px 20px;
float: left;
width: 20%;
border: none;
border-radius: 5px;
cursor: pointer;
padding: 8px;
background-color: #c2c2c2;
color: black;
font-weight: bold;
font-size: 90%;
text-align: center;
}
input[type=submit]:hover{
background-color: #000046;
color: white;
}