-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhilo.css
125 lines (106 loc) · 1.67 KB
/
hilo.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
table{
border-collapse: collapse;
border-radius: 5px;
margin: 1% 10%;
padding: 8px;
background-color: #e4f1f2;
width: 80%;
}
.tema{
border-left: 10px solid #000046;
border-right: 10px solid #000046;
margin: 1% 10% 4%;
}
.fecha-hilo-2, .creador-hilo{
width: 17%;
}
.orden-respuesta, .cont-hilo{
width: 83%;
}
.fecha-hilo-2, .orden-respuesta{
border-bottom: 1px solid #000046;
padding: 2px 0 0 2px;
}
.creador-hilo, .cont-hilo{
border-top: 1px solid #000046;
}
.fecha-hilo-2{
text-align: left;
font-size: 80%;
}
.orden-respuesta{
text-align: right;
font-size: 95%;
padding-right: 1%;
}
.creador-hilo{
background-color: #b7c7c7;
text-align: center;
}
.creador-hilo img{
height: 100px;
}
.fecha-registro{
font-size: 85%;
}
.cont-hilo{
text-align: justify;
vertical-align: top;
padding: 0 2% 0 1%;
}
h3{
font-size: 90%;
border-bottom: 1px solid #000046;
}
form{
margin: 5% 10%;
}
fieldset{
margin: 1%;
border: 0;
padding: 0;
}
legend{
text-transform: uppercase;
font-weight: bold;
padding-bottom: 3px;
border-bottom: 1px solid #000046;
}
textarea{
width: 75%;
margin: 1% 0;
}
input{
margin: 1%;
float: left;
width: 12%;
border: none;
border-radius: 5px;
cursor: pointer;
padding: 8px;
background-color: #c2c2c2;
color: black;
font-weight: bold;
font-size: 90%;
text-align: center;
}
input:hover, .btn-respuesta:hover{
text-decoration: none;
background-color: #000046;
color: white;
}
.btn-respuesta{
margin: 1% 10%;
width: 7%;
min-width: 65px;
border: none;
border-radius: 5px;
cursor: pointer;
padding: 8px;
background-color: #c2c2c2;
color: black;
font-weight: bold;
font-size: 90%;
display: block;
text-align: center;
}