-
Notifications
You must be signed in to change notification settings - Fork 0
/
acc_details.css
76 lines (67 loc) · 1.26 KB
/
acc_details.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
html {
background-color: rgb(107, 72, 163);
color: black;
}
.form {
background-color: rgb(128, 22, 62);
color: white;
margin: 0% 20%;
border: 6px solid white;
}
.data {
margin: 3% 10%;
}
tr,
th,
td {
padding: 10px;
text-align: center;
}
#ok1 {
padding: 10px;
margin: 5px;
background-color: green;
color: white;
border-radius: 20px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
}
#ok2 {
padding: 10px;
margin: 5px;
background-color: red;
color: white;
border-radius: 20px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
}
.value {
background-color: rgb(7, 51, 80);
color: white;
border: 4px solid white;
margin-left: 20%;
margin-right: 20%;
}
.value th,
.value tr,
.value td {
padding: 10px;
text-align: left;
border: 1px solid white;
border-collapse: collapse;
font-size: 16px;
min-width: 200px;
}
.value td {
background-color: lightgray;
color: black;
}
#a {
background-color: tomato;
color: white;
text-align: center;
}