Skip to content

Commit e5d0c04

Browse files
committed
Fav icon & MDJAmin & CC
1 parent b4cd0b3 commit e5d0c04

4 files changed

Lines changed: 37 additions & 5 deletions

File tree

1484799.png

9.32 KB
Loading

css/style.css

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,34 @@ input {
117117
display: flex;
118118
justify-content: center;
119119
flex-wrap: wrap;
120+
margin-bottom: 10%;
121+
}
122+
123+
.MDJAminDiv {
124+
display: flex;
125+
justify-content: center;
126+
z-index: 100;
127+
position: absolute;
128+
top: 10px;
129+
left: 2%;
130+
}
131+
132+
.MDJAmin {
133+
text-decoration: none;
134+
border-bottom: 1px dashed var(--card-bg-text);
135+
border-top: 1px dashed var(--card-bg-text);
136+
/* border-bottom: 1px dashed rgb(44, 44, 44); */
137+
/* border-top: 1px dashed rgb(44, 44, 44); */
138+
padding: 4px 0;
139+
/* color: rgba(44, 44, 44, 0.525); */
140+
color: var(--card-bg-text);
141+
font-family: monospace;
142+
font-style: italic;
143+
font-size: 1.1em;
144+
transition: all 0.5s;
145+
}
146+
147+
.MDJAmin:hover {
148+
/* color: #000000; */
149+
color: var(--name-color);
120150
}

index.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
<meta charset="UTF-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77
<link rel="stylesheet" href="css/style.css">
8-
<title>Soup laziz mamamia mamasita marchelo!</title>
8+
<link rel="shortcut icon" href="1484799.png" type="image/x-icon">
9+
<title>Form Maker</title>
910
</head>
1011

1112
<body>
@@ -111,6 +112,10 @@
111112

112113
</div>
113114
</div>
115+
116+
<div class="MDJAminDiv">
117+
<a class="MDJAmin" href="https://github.com/MDJAmin" target="_blank">MDJAmin</a>
118+
</div>
114119
<script src="js/script.js"></script>
115120
</body>
116121

js/script.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,10 +151,7 @@ document.addEventListener("DOMContentLoaded", function () {
151151
modeSwitch.addEventListener("click", () => {
152152
document.documentElement.classList.toggle("dark");
153153
modeSwitch.classList.toggle("active");
154-
localStorage.setItem(
155-
"darkMode",
156-
document.documentElement.classList.contains("dark")
157-
);
154+
localStorage.setItem("darkMode", document.documentElement.classList.contains("dark"));
158155
});
159156
});
160157
// console.log(hi)

0 commit comments

Comments
 (0)