-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (55 loc) · 992 Bytes
/
Copy pathstyle.css
File metadata and controls
63 lines (55 loc) · 992 Bytes
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
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Courier New', Courier, monospace;
background-color: #f4f4f4;
color: #333;
min-height: 100vh;
}
/* Header */
header {
background-color: #222;
color: #fff;
padding: 20px;
text-align: center;
}
/* Projects Grid */
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
padding: 40px;
}
/* Project Card */
.project-card {
background: white;
border: 2px solid #ccc;
border-radius: 10px;
padding: 20px;
text-align: center;
}
.project-card h2 {
font-size: 1.2rem;
margin-bottom: 15px;
}
.project-buttons {
display: flex;
justify-content: center;
gap: 10px;
}
.project-buttons a {
text-decoration: none;
background-color: #222;
color: white;
padding: 10px 15px;
border-radius: 5px;
font-size: 0.9rem;
transition: background 0.3s;
}
.project-buttons a:hover {
background-color: #555;
}