-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsproject.css
More file actions
146 lines (124 loc) · 2.4 KB
/
Copy pathsproject.css
File metadata and controls
146 lines (124 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
142
143
144
145
/* Global Styles */
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f4f7fa;
}
/* Header Styles */
header {
background-color: #191C2F;
color: white;
padding: 100px 40px;
text-align: center;
}
header h1 {
margin: 0;
font-size: 64px;
font-weight: bold;
}
header .subtitle {
margin-top: 20px;
font-size: 32px;
color: #d9e6ff;
}
/* Container for Projects */
.container {
padding: 20px 40px;
}
/* Projects List */
.projects-list {
padding: 20px;
}
/* Individual Project Card */
.project-card {
margin-bottom: 20px;
padding: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
position: relative; /* Enable positioning for children */
}
.project-card h3 {
margin: 0 0 10px;
font-size: 22px;
}
.project-card p {
margin: 5px 0;
color: #555;
line-height: 1.5;
}
.project-card .description {
margin-top: 10px;
color: #333;
font-style: italic;
}
/* Button Container */
.button-container {
position: absolute;
bottom: 20px;
right: 20px;
display: flex;
gap: 10px;
}
/* Buttons */
.project-card button {
padding: 8px 15px;
font-size: 14px;
border: none;
border-radius: 4px;
cursor: pointer;
}
.project-card button:hover {
filter: brightness(1.1); /* Slightly brighten on hover */
}
.project-card .apply-button {
background-color: #191C2F;
color: white;
font-weight: bold;
transition: all 0.3s ease;
}
.project-card .apply-button:hover {
background-color: #292E4A; /* Lightens the button on hover */
}
/* Pagination Styles */
.pagination-container {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
margin-top: 20px;
padding: 10px 20px;
background-color: #f9f9f9;
border-top: 1px solid #ccc;
font-size: 14px;
}
.pagination-container label {
margin-right: 5px;
color: #555;
}
.pagination-container select {
padding: 5px 10px;
border: 1px solid #ccc;
border-radius: 4px;
background-color: white;
}
.pagination-container .page-info {
margin-left: 15px;
color: #555;
}
.pagination-container .pagination-btn {
padding: 5px 10px;
font-size: 14px;
background-color: #e0e0e0;
border: 1px solid #ccc;
border-radius: 4px;
cursor: pointer;
}
.pagination-container .pagination-btn:disabled {
cursor: not-allowed;
opacity: 0.5;
}
.pagination-container .pagination-btn:hover:not(:disabled) {
background-color: #d0d0d0;
}