-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdelete_course.css
More file actions
111 lines (96 loc) · 1.93 KB
/
delete_course.css
File metadata and controls
111 lines (96 loc) · 1.93 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
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
html {
font-size: 16px;
-webkit-font-smoothing: antialiased;
}
body {
background-color:#2c3e50;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
/* Header Section */
header {
background: linear-gradient(135deg, #9b59b6, #e74c3c); /* Abstract purple to pink gradient */
color: white;
padding: 20px;
text-align: center;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Added shadow to header */
}
header h1 {
margin: 0;
font-size: 36px;
}
header h2 {
margin: 0;
font-size: 24px;
}
/* Form Container */
.full {
display: flex;
justify-content: center;
align-items: center;
height: 80vh;
}
/* Login Container */
.login-container {
background: linear-gradient(135deg, #9b59b6, #e74c3c);
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 500px; /* Limit the form width */
}
h2 {
text-align: center;
margin-bottom: 20px;
color: white;
}
/* Form Inputs */
form {
display: flex;
flex-direction: column;
gap: 15px;
}
label {
font-size: 16px;
color: white;
}
input[type="text"] {
padding: 10px;
font-size: 16px;
border: 1px solid #ddd;
border-radius: 4px;
width: 100%;
box-sizing: border-box;
}
button {
background-color: #e74c3c;
color: white;
padding: 12px;
font-size: 16px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}
/* Button Hover Effect */
button:hover {
background-color: #c0392b;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
.login-container {
padding: 20px;
width: 90%; /* Make form container take more space on small screens */
}
h2 {
font-size: 28px; /* Adjust font size for heading */
}
}