diff options
| author | Debulois <quentin@debulois.fr> | 2022-04-04 22:58:43 +0200 |
|---|---|---|
| committer | Debulois <quentin@debulois.fr> | 2022-04-04 22:58:43 +0200 |
| commit | 5582d242d03692a7e1b2c631e1b4ff3f52e8b72c (patch) | |
| tree | c1e0242053a46d7b4145111a78a3e86e3cfd2f0d /Static/Css/admin.css | |
| parent | b637d625216e50602d0bde8a544c281ca00af5fa (diff) | |
Révision complète du css et modification du js principalement
Diffstat (limited to 'Static/Css/admin.css')
| -rw-r--r-- | Static/Css/admin.css | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/Static/Css/admin.css b/Static/Css/admin.css new file mode 100644 index 0000000..b92ae2c --- /dev/null +++ b/Static/Css/admin.css @@ -0,0 +1,56 @@ + +/* BUTTONS */ +#adminButtons { + display: flex; + justify-content: space-around; + gap: 1em; + width: 80%; + margin-left: auto; + margin-right: auto; + padding: 2em; + border-bottom: var(--mainSiteColor) solid 2px ; +} + +/* SECTION JOBS*/ +#secAdminJobs form { + flex-direction: column; + justify-content: space-around; +} + +#secAdminJobs form label i { + width: 30px; + border-radius: 0px; +} + +#secAdminJobs form label i:first-child { + border-radius: var(--iBorderRadius); +} + +/* MAIN */ +#mainAdmin section { + display: none; +} + +#mainAdmin form { + display: flex; + justify-content: center; + gap: 1em; + margin: 1em; +} + +#mainAdmin pre { + font-family: SourceSansPro; + white-space: pre-wrap; + margin: 0.3em 0em; +} + +/* MOBILE */ +@media screen and (max-width: 768px) { + #secAdminUsers form { + flex-direction: column; + } + + #secAdminMissions form { + flex-direction: column; + } +}
\ No newline at end of file |
