Some HR Styles

Developer
Size
3,384 Kb
Views
48,576

How do I make an some hr styles?

Messing around with some Horizontal Rule styles.. What is a some hr styles? How do you make a some hr styles? This script and codes were developed by Mark Murray on 12 August 2022, Friday.

Some HR Styles Previews

Some HR Styles - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Some HR Styles</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"> <link rel="stylesheet" href="css/style.css">
</head>
<body> <hr id="one" data-symbol="☂☂☂">
<hr id="two" data-symbol="✈">
<hr id="three" data-symbol="BREAK">
<hr id="four" data-symbol="SECTION">
<hr id="five" data-symbol="∞">
<hr id="six" data-symbol="lololol">
<hr id="seven" data-symbol="HI">
<hr id="eight" data-symbol="✂">
<hr id="nine" data-symbol="‡">
</body>
</html>

Some HR Styles - Script Codes CSS Codes

@import url(http://fonts.googleapis.com/css?family=Megrim);
html, body { background: black; font-family: Megrim, cursive;
}
hr { height: 1px; background: white; border: none; outline: none; margin: 3em 3em 5em; position: relative;
}
hr:before { content: attr(data-symbol); position: absolute; top: 0; left: 50%; background: black; color: white; padding: 0.5em 3em; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);
}
hr#one { width: 50%; margin: 3em auto;
}
hr#two { background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background-size: 100%; background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #000000), color-stop(100%, #ffffff)); background-image: -webkit-linear-gradient(left, #000000, #ffffff); background-image: linear-gradient(to right, #000000, #ffffff);
}
hr#two:before { left: 90%; width: 20%; padding: 1em; top: 1px;
}
hr#three { background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzM0OThkYiIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMTBkN2FmIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMzQ5OGRiIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g'); background-size: 100%; background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #3498db), color-stop(50%, #10d7af), color-stop(100%, #3498db)); background-image: -webkit-linear-gradient(left, #3498db, #10d7af, #3498db); background-image: linear-gradient(to right, #3498db, #10d7af, #3498db);
}
hr#three:before { color: #10d7af;
}
hr#four:before { border: 1px solid white;
}
hr#five:before { font-size: 2em; padding: 0.5em 1em; font-weight: lighter; font-family: Helvetica Neue;
}
hr#six { background: black; border-bottom: 1px dashed white;
}
hr#six:before { border: 1px dashed white; border-radius: 20px;
}
hr#seven { background: black; border-bottom: 1px double white;
}
hr#seven:before { border-left: 1px solid white; border-right: 1px solid white;
}
hr#eight { background: transparent; border-bottom: 2px dashed white; width: 40%; margin: 0 auto;
}
hr#eight:before { top: 3px; left: 0; padding-right: 2em;
}
hr#nine:before { border: 1px solid white; padding: 1em 1.25em; border-radius: 50%;
}
Some HR Styles - Script Codes
Some HR Styles - Script Codes
Home Page Home
Developer Mark Murray
Username markmurray
Uploaded August 12, 2022
Rating 4.5
Size 3,384 Kb
Views 48,576
Do you need developer help for Some HR Styles?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Mark Murray (markmurray) Script Codes
Create amazing love letters with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!