-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewstyle.css
63 lines (61 loc) · 1.36 KB
/
newstyle.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
body {
background: url('https://www.nasa.gov/sites/default/files/thumbnails/image/pia25088.jpeg') no-repeat center center fixed;
background-size: cover;
color: white;
font-family: 'Courier New', Courier, monospace;
position: relative;
}
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
z-index: -1;
}
.title-container {
text-align: center;
}
.social_icon {
margin: 0 10px;
font-size: 1.5em;
height: 5px;
width: 5px;
}
.social_icon:hover {
color: #FFD700;
}
.section {
margin-top: 50px;
background-color: rgba(0, 0, 0, 0.8);
padding: 20px;
border-radius: 10px;
}
/* .repo-card-wrapper {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.repo-card {
margin: 10px;
/* width: 300px; /* Fixed width for the card */
/* overflow: hidden; /* Hide overflow to maintain image fit */
/* position: relative; Position relative for child elements */
/* .repo-card img {
width: 100%;
height: auto;
border-radius: 10px;
transition: transform 0.3s, box-shadow 0.3s;
}
.repo-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
} */
.imagebox {
max-width: 100%;
max-height: 100vh;
margin: auto;
}