aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/ui/Login.css
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2019-07-10 18:58:52 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:55 +0300
commitc766a3aabba6fda6d9e7e13e39f8780226989fe6 (patch)
tree2233407d79bea2609a321c40b1843dae261eff2b /vnext/src/ui/Login.css
parentcf9050f7d6fb61e0743bc9bc3ba2c26b2109cd33 (diff)
login wip
Diffstat (limited to 'vnext/src/ui/Login.css')
-rw-r--r--vnext/src/ui/Login.css103
1 files changed, 103 insertions, 0 deletions
diff --git a/vnext/src/ui/Login.css b/vnext/src/ui/Login.css
new file mode 100644
index 00000000..30f107f5
--- /dev/null
+++ b/vnext/src/ui/Login.css
@@ -0,0 +1,103 @@
+@custom-media --viewport-desktop (width >=62.5rem);
+
+#dialogt {
+ height: 100%;
+ left: 0;
+ position: fixed;
+ top: 0;
+ width: 100%;
+ z-index: 10;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ background-color: rgba(0, 0, 0, 0.3);
+}
+#dialogw {
+ z-index: 11;
+ max-width: 96%;
+ max-height: calc(100% - 100px);
+ background-color: #fff;
+}
+#dialogw a {
+ display: block;
+}
+#dialogw img {
+ max-height: 100%;
+ max-height: 90vh;
+ max-width: 100%;
+}
+#dialog_header {
+ width: 100%;
+ height: 44px;
+ display: flex;
+ flex-direction: row-reverse;
+ align-items: center;
+}
+.header_image {
+ background: rgba(0, 0, 0, 0.28);
+}
+#dialogc {
+ cursor: pointer;
+ color: #ccc;
+ padding-right: 6px;
+}
+.dialoglogin {
+ background: #fff;
+ padding: 25px;
+ margin: 0 auto;
+}
+@media (--viewport-desktop) {
+ .dialoglogin {
+ width: 300px;
+ }
+}
+.dialog-opened {
+ overflow: hidden;
+}
+#signemail,
+#signfb,
+#signvk {
+ display: block;
+ line-height: 32px;
+ margin: 10px 0;
+ text-decoration: none;
+ width: 100%;
+}
+#signvk {
+ margin-bottom: 30px;
+}
+.dialoglogin form {
+ margin-top: 7px;
+}
+.signinput,
+.signsubmit {
+ border: 1px solid #CCC;
+ margin: 3px 0;
+ padding: 3px;
+}
+.signsubmit {
+ width: 70px;
+}
+.dialogshare {
+ background: #fff;
+ min-width: 300px;
+ overflow: auto;
+ padding: 20px;
+}
+.dialogl {
+ background: #fff;
+ border: 1px solid #DDD;
+ margin: 3px 0 20px;
+ padding: 5px;
+}
+.dialogshare li {
+ float: left;
+ margin: 5px 10px 0 0;
+}
+.dialogshare a {
+ display: block;
+}
+.dialogtxt {
+ background: #fff;
+ padding: 20px;
+}