-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #119 from tsg-iitkgp/certifpreview
Certifpreview
- Loading branch information
Showing
43 changed files
with
44,911 additions
and
43 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import React from 'react'; | ||
import AdminNavbar from "./AdminNavbar/AdminNavbar"; | ||
|
||
export default function AdminLayout({ children }) { | ||
return ( | ||
<div className="adminlayout"> | ||
<AdminNavbar /> | ||
<main style={{ margin:"3vw auto" , | ||
padding:" 0vw 0vw 5vw 0vw", width:"85vw", | ||
minHeight:"80vh" ,backgroundColor:"white", borderRadius:"0.75vw", boxShadow: "rgba(100, 100, 111, 0.2) 0px 7px 29px 0px" }}>{children}</main> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import React from 'react'; | ||
|
||
export default function AdminNavbar(){ | ||
return( | ||
<div> | ||
<h1>NAVBAR HERE</h1> | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
@media only screen and (min-width: 1800px){ | ||
.CoordinateMappingDiv { | ||
width: 100%; | ||
margin: 3vw 0; | ||
display: flex; | ||
/* justify-content: space-between; */ | ||
} | ||
|
||
.TableDiv > table{ | ||
width: 40vw; | ||
margin: 20px auto; | ||
} | ||
|
||
.InputDiv { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
width: 40vw; | ||
margin: 0 auto; | ||
} | ||
} | ||
|
||
@media only screen and (max-width:1801px){ | ||
.CoordinateMappingDiv { | ||
margin: 1vw 0; | ||
width: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
/* justify-content: space-between; */ | ||
} | ||
|
||
.TableDiv > table{ | ||
width: 70vw; | ||
margin: 20px auto; | ||
} | ||
|
||
.InputDiv { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
width: 70vw; | ||
margin: 0 auto; | ||
} | ||
} | ||
|
||
|
||
|
||
.CanvasDiv { | ||
/* display: flex; */ | ||
/* justify-content: center; */ | ||
/* align-items: center; */ | ||
/* height: 95vh; */ | ||
} | ||
|
||
.RectDiv { | ||
width: 85vw; | ||
} | ||
|
||
.InputDiv input{ | ||
width:16vw; | ||
} | ||
|
||
.InputDiv label{ | ||
font-size: 20px; | ||
font-weight: 500; | ||
} | ||
|
||
.Form > input{ | ||
font-size: 20px; | ||
margin: 0 5px; | ||
} | ||
|
||
.InputDiv>* { | ||
margin: .3rem ; | ||
font-size: 20px; | ||
padding: 5px 15px; | ||
} | ||
|
||
.InputDiv button{ | ||
cursor: pointer; | ||
} | ||
|
||
|
||
#myCanvas { | ||
/* width: 40vw; */ | ||
/* height: 60%; */ | ||
background-color: black; | ||
/* background-image: url("../public/imgs/certi.png"); */ | ||
background-size: contain; | ||
background-repeat: no-repeat; | ||
} | ||
|
||
.sideBar { | ||
width: 50%; | ||
} | ||
|
||
.TableDiv th{ | ||
background-color: #5da9ff; | ||
color: white; | ||
padding: 10px; | ||
font-size: 25px; | ||
} | ||
|
||
.TableDiv td{ | ||
background-color: white; | ||
padding: 5px; | ||
font-size: 20px; | ||
} |
Oops, something went wrong.