-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
48 lines (44 loc) · 790 Bytes
/
app.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
body{
font-family: Arial, sans-serif;
background-image: url('./assets/gambar.jpg');
background-position: top;
}
#app{
width: 300px;
margin: 0px auto;
margin-top: 160px;
}
#app h3{
font-size: 1.1em;
margin-bottom: 0px;
padding: 0.3em;
background: #4ac550;
color: white;
text-align: center;
}
#app table{
border-collapse: collapse;
width: 100%;
}
#app table td{
font-size: 1em;
padding: 0.5em;
}
#app table td:last-child{
text-align: right;
}
small{
margin-top: 10px;
font-size: .7em;
padding-left: .7em;
margin-left: 470px;
position: fixed;
}
#app table tr:nth-child(even){
background-color: #e8e8e8;
}
#app table tr:hover{
background-color: #4ac550;
color: white;
cursor: pointer;
}