-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
103 lines (87 loc) · 2.07 KB
/
Copy pathstyles.css
File metadata and controls
103 lines (87 loc) · 2.07 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
/* styles.css */
/* Body styles */
body {
font-family: Arial, sans-serif;
}
/* Container styles */
.container {
width: 500px;
margin: 0 auto;
padding-top: 100px;
}
.listings-container {
width: 80%; /* Adjust container width as needed */
margin: 0 auto; /* Center the container horizontally */
padding-top: 20px; /* Adjust top padding */
}
/* Input styles */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="submit"] {
width: 100%;
padding: 10px;
margin: 5px 0;
box-sizing: border-box;
font-size: 16px;
}
/* Submit button styles */
input[type="submit"] {
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
/* Hover effect for submit button */
input[type="submit"]:hover {
background-color: #45a049;
}
/* Captcha box styles */
.captcha-box img {
display: inline-block;
vertical-align: middle; /* Aligns the image vertically with the text */
margin-right: 10px; /* Adjust margin as needed */
}
/* Dashboard options list styles */
.dashboard-options li {
list-style-type: none; /* Remove bullet points */
margin-bottom: 10px; /* Adjust spacing between options */
}
/* Dashboard options link styles */
.dashboard-options li a {
display: inline-block;
padding: 10px; /* Equal padding on all sides */
text-align: center;
width: 80%;
background-color: #007bff; /* Change button color as needed */
color: #fff;
text-decoration: none;
border-radius: 5px;
}
/* Hover effect for dashboard options */
.dashboard-options li a:hover {
background-color: #0056b3; /* Darker color on hover */
}
.clearfix::after {
content: "";
display: table;
clear: both;
}
form {
display: flex;
flex-direction: column;
align-items: flex-start;
}
label {
margin-bottom: 5px;
}
#description {
width: 100%;
height: 100px; /* Adjust height as needed */
resize: vertical; /* Allow vertical resizing */
}
#category {
width: 100%;
margin-bottom: 10px; /* Add some space below the dropdown */
}