Skip to content

Commit 837ebd2

Browse files
committed
change hr format
1 parent dfe1491 commit 837ebd2

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

css/navbar.css

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
position: fixed;
1717
top: 0;
1818
width: 100%;
19-
z-index: 9999;
19+
z-index: 4;
2020
background-color: rgba(var(--default-background-color), 0.5);
2121
backdrop-filter: blur(6px);
2222
box-shadow: 5px 0px 20px;
@@ -92,28 +92,29 @@
9292
transition: all 0.8s ease-in;
9393
}
9494
#nav-columnar-menu {
95+
font-size: 0.9rem;
9596
position: absolute;
9697
margin-top: 0;
9798
background-color: rgb(38, 26, 50);
9899
width: 75%;
99100
height: 100vh;
100101
left: -100vw;
101-
transition: all 0.3s ease-in;
102+
transition: all 0.3s ease-out;
102103
}
103104
#nav-columnar-menu-list {
104105
list-style-type: none;
105106
padding: 0;
106107
}
107108
#nav-columnar-menu.active {
108109
left: 0;
109-
transition: all 0.8s ease-in;
110+
transition: all 0.8s ease-out;
110111
}
111112

112113
.nav-element {
113114
display: flex;
114115
text-align: left;
115116
padding: 0.5em;
116-
padding-left: 2em;
117+
padding-left: 5em;
117118
transition: all 0.5s ease-in-out;
118119
justify-content: flex-start;
119120
align-items: center;
@@ -127,5 +128,5 @@
127128
padding: 0;
128129
}
129130
.nav-link-label {
130-
padding-left: 2em;
131+
padding-left: 1.5em;
131132
}

css/styles.css

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,10 @@ i {
6060
color: var(--default-secundary-font-color);
6161
}
6262
hr {
63+
width: 80%;
6364
border: 0;
64-
height: 1px;
65-
background-image: linear-gradient(
66-
to right,
67-
black,
68-
rgba(0, 255, 255, 0.75),
69-
black
70-
);
65+
height: 0.05em;
66+
background: var(--default-font-color);
7167
}
7268
/* || UTILITIES */
7369

0 commit comments

Comments
 (0)