-
Notifications
You must be signed in to change notification settings - Fork 30
/
style.css
100 lines (82 loc) · 1.75 KB
/
style.css
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
body {
display: flex;
justify-content: center;
align-items: flex-start;
height: 100vh;
background-color: #161616;
margin: 0;
}
.project-card-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 50px;
max-width: 1200px;
padding: 100px 20px;
}
.project-card {
background-color: rgba(255, 255, 255, 0.8);
border-radius: 10px;
box-shadow: 0 2px 10px #7a0000;
overflow: hidden;
transition: transform 0.3s ease-in-out;
}
.project-card:hover {
transform: translateY(-10px);
}
.card-image {
width: 100%;
border-radius: 10px 10px 0 0;
transition: transform 0.3s ease-in-out;
}
.project-card:hover .card-image {
transform: scale(1.1);
}
.project-info {
padding: 20px;
transition: background-color 0.3s ease-in-out;
}
.project-title {
font-size: 24px;
margin: 0 0 10px;
}
.project-description {
font-size: 16px;
}
.project-card img {
height: 150px;
}
/* Footer styles */
.footer {
background-color: #1c1c1c;
color: #ffffff;
text-align: right;
padding: 10px;
position: fixed;
bottom: 0;
right: 0;
left: 0;
}
.footer .footer-content {
display: flex;
justify-content: flex-end;
max-width: 1200px;
margin: 0 auto;
}
.footer .created-by, .footer .github-repo {
padding: 0 20px;
}
.footer .created-by a {
color: #ffffff;
text-decoration: none;
}
.footer .created-by a:hover {
color: #2887e3;
text-decoration: none;
}
.footer .github-repo a {
color: #2887e3;
text-decoration: none;
}
.footer .github-repo a:hover {
text-decoration: none;
}