Skip to content
Open
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
58 changes: 57 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,67 @@
#noti{
display: none;
}
.container{
background-color: #333;
color: white !important;
border-radius: 0;
}
.box1{
background-color:#000;
}
.title{
margin: auto;
font-weight: 500;
text-align: center;
color: white;
font-family: monospace;
margin-bottom: 0 !important;

}

.block {
width: 25%;
height: 2px;
background-color: teal;
margin: auto;
margin-bottom: 50px !important;
}
div, textarea, button{
border-radius: 0 !important;
}
.label{
text-decoration: underline;
text-decoration-color: teal;
color: #ddd;
}
.textarea{
border: 0px;
border-bottom: 1px solid white;
border-left: 1px solid white;
background: transparent;
color: #aaa;
}
.textarea:hover{
border: 1px solid white;
}
.textarea:focus{
border: 1px solid teal;
}
.button{
background-color: teal !important;
transition: all 0.5s;
}
.button:hover {
background-color: black !important;
border: 2px solid teal !important;
}
</style>
</head>
<body>
<div class="container box">
<div class="box">
<div class="box box1">
<h1 class="title is-1">JSON Comparator</h1>
<div class="block"></div>
<div class="notification is-primary is-active" id="noti">
Primar lorem ipsum dolor sit amet, consectetur
adipiscing elit lorem ipsum dolor sit amet,
Expand Down Expand Up @@ -46,6 +101,7 @@ <h1 class="title is-1">JSON Comparator</h1>
</div>
<div class="column">
<h2 class="title is-2">Result</h2>
<div class="block"></div>
<table class="table" id="table">
<thead>
<tr>
Expand Down