Skip to content

feat: add noscript tag #305

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions public/css/arf.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ body {
font-family: "Helvetica Neue", Helvetica;
}

noscript p{
text-align: center;
background-color: rgb(255, 228, 196);
margin: 0 auto;
width: 80vw;
padding: 25px 0;
margin-top: 80px;
border-radius: 10px;
border: 1px solid rgb(255, 204, 153);
margin-bottom: 20px;
display: flex-wrap;
}

#body {
margin: 0 auto;
position: relative;
Expand Down
5 changes: 4 additions & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
<script type="text/javascript" src="js/d3.v3.min.js"></script>
<title>OSINT Framework</title>
</head>

<noscript>
<p>Sorry, Your browser does not support JavaScript! Activate JavaScript on your browser or look for a compatible
browser to use the site.</p>
</noscript>
<body>
<div id="body">
<div id="header">
Expand Down