From de90b1e06eb5e3edaca8faa086fdbbe8dff31f2e Mon Sep 17 00:00:00 2001 From: leomartine Date: Fri, 19 Mar 2021 14:00:02 +0000 Subject: [PATCH] html css first commit --- app.css | 73 +++++++++++++++++++++ index.html | 187 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 260 insertions(+) create mode 100644 app.css create mode 100644 index.html diff --git a/app.css b/app.css new file mode 100644 index 0000000..f2ad8c5 --- /dev/null +++ b/app.css @@ -0,0 +1,73 @@ +body { + margin: 0; + padding: 0; + font-family: 'PT Mono', monospace; + /* font-family: 'Special Elite', cursive !important */ +} + +#map { + position: absolute; + top: 0; + bottom: 0; + width: 100%; +} + +.footer { + position: absolute; + bottom: 0; + width: 100%; + /* Set the fixed height of the footer here */ + height: 30px; + line-height: 30px; /* Vertically center the text there */ + background-color: #f5f5f5; + font-size: 12px +} + +/* removing footer on mobile */ +@media screen and (max-width: 400px) { + .footer { + display:none + } +} + +/* big modal */ +.modal-lg { + max-width:1140px !important; +} + +.mapboxgl-map{ + font-family: 'PT Mono', monospace; + /* font-family: 'Special Elite', cursive !important */ +} + +.mapboxgl-ctrl-logo{ + display: none !important; +} + + +/* paper plane animation */ +#canvas3d{ + display:none; + transition: all .3s; + position:fixed; + height:100vh; + width:100vw; + background-color: rgba(0,0,0,0); + z-index:9999; + margin-top: 50vh; /* poussé de la moitié de hauteur de viewport */ + transform: translateY(-50%) translateX(-50%); /* tiré de la moitié de sa propre hauteur */ + margin-left: 50vw; /* poussé de la moitié de hauteur de viewport */ +} + +/* qill text editor */ +#messageTextArea { + min-height: 200px; + border-radius: 0px 0px .25em .25em !important; + border-color: #ced4da !important +} + +.ql-toolbar{ + border-radius: .25em .25em 0px 0px !important; + border-color: #ced4da !important +} + diff --git a/index.html b/index.html new file mode 100644 index 0000000..6806676 --- /dev/null +++ b/index.html @@ -0,0 +1,187 @@ + + + + + app + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + \ No newline at end of file