-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcrudStyles.css
More file actions
141 lines (108 loc) · 2.4 KB
/
crudStyles.css
File metadata and controls
141 lines (108 loc) · 2.4 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*Styles for the body*/
body{
background-color:rgb(183, 190,174);
}
/* Styles for the button */
button {
display: inline-block;
margin-top: 20px;
}
button a {
text-decoration: none;
color: white;
display: block;
padding: 10px 20px;
background-color: #3498db;
}
button a:hover {
background-color: #2980b9;
}
/* Styles for the main header */
h1 {
margin-top: 20px;
font-size: 36px;
}
/* Styles for the form container */
.addproject {
margin-top: 20px;
padding: 20px;
border: 1px solid black;
border-radius: 5px;
background-image: url("images/addprojects_background.jpg");
}
.addproject label {
color:whitesmoke ;
display: block;
margin-bottom: 5px;
}
.addproject input[type="text"],
.addproject textarea,
.addproject input[type="date"] {
width: 100%;
padding: 10px;
box-sizing: border-box;
margin-bottom: 10px;
}
.addproject input[type="submit"] {
padding: 10px 20px;
background-color: #2ecc71;
border: none;
color: rgb(255, 255, 255);
cursor: pointer;
}
.addproject input[type="submit"]:hover {
background-color: #27ae60;
}
/* Styles for the project details section */
.project-details {
margin-top: 20px;
padding: 20px;
border: 1px double ;
border-radius: 5px;
background-image: url("images/project\ details\ background.jpg");
}
.project-details{
display: block;
margin-bottom: 5px;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.project-details input[type="text"],
.project-details textarea,
.project-details input[type="date"] {
width: 100%;
padding: 10px;
margin: 5px 0;
border: 1px solid #ccc;
border-radius: 5px;
font-style : italic;
font-size:15px;
}
.project-details input[type="submit"] {
padding: 10px 20px;
background-color: #2ecc71;
border: none;
color: white;
cursor: pointer;
}
.project-details input[type="submit"]:hover {
background-color: #27ae60;
}
/* Styles for the Edit/Delete project section */
.editproject {
margin-top: 20px;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
.editproject h1 {
font-size: 24px;
margin-bottom: 20px;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
color:darkred;
}
#topic{
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
color:darkred;
text-align: center;
font-size: 32px;
}