main.blade.php
4.61 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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<style>
* {
box-sizing: border-box;
}
.row #row{
margin-left:55px;
margin-right:55px;
margin-top: 25px;
margin-bottom: 15px
}
.column {
float: left;
width: 50%;
padding: 5px;
}
/* Clearfix (clear floats) */
.row::after {
content: "";
clear: both;
display: table;
}
table, #table {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
border: 1px solid #ddd;
}
th, td, #th, #td {
text-align: left;
padding: 8px;
}
th #th {
background-color: red;
}
tr:hover{
background: yellow;
}
td, #td {
font: 1em sans-serif;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
hr, #hr {
border: none;
border-top: 1px dotted #f00;
color: #fff;
background-color: #fff;
height: 4px;
width: 100%;
}
tr:nth-child(even) {
/* background-color: #f2f2f2; */
}
/* Tata letak responsif - membuat dua kolom bertumpuk, bukan bersebelahan pada layar yang lebih kecil dari 600 piksel */
@media screen and (max-width: 600px) {
.column {
width: 90%;
}
}
</style>
</head>
<body>
{{-- <h2>Responsive "Side-by-side" Tables</h2>
<p>Cara membuat gambar berdampingan dengan properti CSS float. Pada layar dengan lebar 600 piksel atau kurang, gambar akan bertumpuk, bukan bersebelahan.</p>
<p>Resize the browser window to see the effect.</p> --}}
<div class="row">
<div class="col-12">
<hr>
<h3 class="page-title ml-5">
Resume Peraturan
</h3>
</div>
<div class="column" id="column">
<div class="panel panel-primary">
<div class="panel-heading">Peraturan Daerah Terbaru</div>
</div>
<table id="table">
<tr id="tr">
<th class="col-1 text-center" id="th">No.</th>
<th class="col-6 text-center" id="th">Judul</th>
<th class="col-3 text-center" id="th">No.LN</th>
<th class="col-2 text-center" id="th"><span class="fa fa-download glyphicon glyphicon-download-alt"></span></th>
</tr>
<tr id="tr">
<td id="td">1</td>
<td id="td"></td>
<td id="td"></td>
<td id="td"></td>
</tr>
<tr id="tr">
<td id="td">2</td>
<td id="td"></td>
<td id="td"></td>
<td id="td"></td>
</tr>
</table>
</div>
<div class="column">
<div class="panel panel-primary">
<div class="panel-heading">Peraturan Daerah Terpopuler</div>
</div>
<table>
<tr>
<th class="col-1 text-center">No.</th>
<th class="col-6 text-center">Judul</th>
<th class="col-3 text-center">No.LN</th>
<th class="col-2 text-center">Unduh</th>
</tr>
<tr>
<td>1</td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</div>
<br/><br/><hr><hr><br/><br/>
<div class="column">
<div class="panel panel-primary">
<div class="panel-heading">Daftar Ranperda</div>
</div>
<table>
<tr>
<th class="col-1 text-center">No.</th>
<th class="col-6 text-center">Judul</th>
<th class="col-3 text-center">No.LN</th>
<th class="col-2 text-center"><span class="fa fa-download glyphicon glyphicon-download-alt"></span></th>
</tr>
<tr>
<td>1</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2</td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</div>
<div class="column">
<div class="panel panel-primary">
<div class="panel-heading">Daftar Ranpergub</div>
</div>
<table class="border">
<tr>
<th class="col-1 text-center">No.</th>
<th class="col-6 text-center">Judul</th>
<th class="col-3 text-center">No.LN</th>
<th class="col-2 text-center">Unduh</th>
</tr>
<tr>
<td>1</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>2</td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</div>
</div>
</body>
</html>