-
Notifications
You must be signed in to change notification settings - Fork 0
/
view.css
111 lines (106 loc) · 1.97 KB
/
view.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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
background-image: url("luke-chesser-pJadQetzTkI-unsplash.jpg");
background-size: cover;
overflow-x: hidden;
}
#heading {
margin-top: 20px;
text-align: center;
margin-bottom: 20px;
}
.table {
color: azure;
border: 1px solid rgb(255, 255, 255);
margin: auto;
font-size: 0.9em;
font-family: sans-serif;
min-width: 400px;
box-shadow: 0 0 20px rgb(208, 218, 217);
align-items: center;
background-color: black;
}
.table th tr {
background-color: #009879;
/* color: #ffffff; */
text-align: center;
border: 1px solid rgb(255, 255, 255);
}
.table th,
.table td {
padding: 12px 15px;
border: 1px solid rgb(247, 247, 247);
text-align: center;
}
.view {
color: white;
height: 30px;
border-radius: 5px;
width: 70px;
background-color: #065a0d;
}
.view:hover {
background-color: #59f03b;
}
/* .del {
color: white;
height: 30px;
border-radius: 5px;
margin-left: 5px;
background-color: rgb(151, 14, 14);
width: 70px;
}
.del:hover {
background-color: red;
} */
#back {
display: none;
color: white;
height: 50px;
border-radius: 5px;
width: 100px;
font-size: 17px;
background-color: blue;
text-align: center;
}
#back:hover {
background-color: #2356e2;
}
#new {
color: white;
height: 50px;
border-radius: 5px;
width: 120px;
font-size: 17px;
background-color: #065a0d;
}
#new:hover {
background-color: #59f03b;
}
#logout1,
#logout2 {
color: white;
height: 50px;
border-radius: 5px;
margin-left: 5px;
font-size: 17px;
background-color: rgb(151, 14, 14);
width: 80px;
}
#logout1:hover,
#logout2:hover {
background-color: red;
}
.navbar {
/* display: none; */
flex-direction: row;
justify-content: space-evenly;
/* margin-top: 50px; */
background-color: black;
padding-top: 10px;
padding-bottom: 10px;
}