summaryrefslogtreecommitdiff
path: root/front/src/Authentication/style.css
diff options
context:
space:
mode:
authorphyscik <mynameisgennadiy@vk.com>2026-05-05 11:39:54 +0500
committerphyscik <mynameisgennadiy@vk.com>2026-05-05 11:39:54 +0500
commit164b76fad806b078aad8c537ba9bdcfbfc757dca (patch)
tree9e3d38765c307a88792c8e98c22a4d4673a03e40 /front/src/Authentication/style.css
parentb82265994c5f72c40f68c6b3a4960869b6a67951 (diff)
css changes + error handling
Diffstat (limited to 'front/src/Authentication/style.css')
-rw-r--r--front/src/Authentication/style.css32
1 files changed, 32 insertions, 0 deletions
diff --git a/front/src/Authentication/style.css b/front/src/Authentication/style.css
new file mode 100644
index 0000000..75f9df2
--- /dev/null
+++ b/front/src/Authentication/style.css
@@ -0,0 +1,32 @@
+.prompt {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ gap: 10px;
+}
+
+.prompt > h2 {
+ margin-bottom: 0px;
+ margin-top: 0px;
+}
+
+.prompt > input {
+ width: 200px;
+ border: 0px;
+ border-bottom: 1px solid var(--colorscheme-gray);
+}
+
+.prompt > input:focus {
+ outline: none;
+}
+
+.authButton {
+ margin-top: 15px;
+ font-family: "LXGW Marker Gothic", sans-serif;
+ color: var(--colorscheme-gray);
+ padding: 3px;
+ min-width: 100px;
+ border: 2px solid var(--colorscheme-black);
+ background-color: var(--colorscheme-white);
+ cursor: pointer;
+}