-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin-add.css
73 lines (67 loc) · 1.07 KB
/
admin-add.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
h2.ad-ad {
text-indent: 30px;
}
.add-adv {
height: 79vh;
}
.add-adv div {
margin-bottom: 10px;
}
.add-adv label {
display: inline-block;
width: 100px;
margin-left: 30px;
}
.add-adv label[for="summary"] {
vertical-align: top;
}
.add-adv input[type="text"] {
width: 297px;
height: 30px;
}
.add-adv input[type="date"] {
width: 300px;
height: 30px;
}
.add-adv textarea {
width: 300px;
height: 200px;
overflow: scroll;
resize: none;
}
input[type="submit"] {
padding: 10px;
border-radius: 5px;
margin-bottom: 20px;
margin-left: 135px;
border: none;
background-color: #2457cf;
color: #ffffff;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #bcb9b9;
color: #000000;
}
.error {
color: #e53935;
margin-top: 10px;
}
/* Style for the logout link */
.logout {
position: absolute;
top: 60px;
right: 30px;
}
.logout button {
padding: 5px 5px;
background-color: #ffffff;
color: #000000;
border: none;
border-radius: 5px;
cursor: pointer;
}
.logout button:hover {
background-color: #2457cf;
color: #ffffff;
}