-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
117 lines (112 loc) · 2.02 KB
/
Copy pathstyle.css
File metadata and controls
117 lines (112 loc) · 2.02 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
* {
font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body {
margin: 0;
padding: 0;
border: 0;
margin: 0;
padding: 0;
height: 100vh;
background-color: #101010;
}
body::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('mamba_python.jpg') no-repeat center;
background-attachment:fixed;
background-position: center center;
background-color: black;
background-size: cover;
filter: blur(25px); /* Apply blur only to the background */
z-index: -1; /* Push it behind everything */
}
div {
text-align: left;
outline: 1px solid whitesmoke;
}
.header-box {
flex: 4;
font-size: 8;
font-weight: 10;
padding: 10px;
color: #F9FAF8;
}
.header-links {
display: flex;
flex: 1;
font-size: 12;
font-weight: 100;
color: #F9FAF8;
margin: 4px;
padding: 4px;
}
.header-container {
flex: 1;
display: flex;
margin: 0px;
}
.header-bar {
background-color: #1F2937;
margin-top: 0;
padding-top: 0;
outline: 2px solid green;
height: 25vh;
}
.title-block {
display: block;
text-align: center;
flex: 1;
font-size: 12;
font-weight: 100;
color: #F9FAF8;
margin: 20px;
padding: 20px;
}
.header-image {
display: flex;
flex: 1;
justify-content: center; /* Centers horizontally */
align-items: center; /* Centers vertically */
height: 20vh;
}
.header-image img {
max-width: 70%; /* Ensures the image is responsive */
max-height: 70%;
border-radius: 15px;
}
.main-section {
display: block;
text-align: center;
flex: 1;
color: #1F2937;
margin: 0px;
padding: 0px;
}
.main-section h2 {
font-size: 28;
font-weight: 500;
margin: 10;
}
.project-card-section {
font-size: 8;
font-weight: 10;
color: #F9FAF8;
display: flex;
justify-content: center;
margin-top: 0;
gap: 10px;
padding: 20px;
}
.project-card-box {
outline: 2px solid #1F2937;
margin: 4px;
padding: 4px;
width: 69px;
height: 69px;
border-radius: 8px;
}