From 4bfdcbc1fe2d23992c876647673488c2992791e8 Mon Sep 17 00:00:00 2001 From: Redume Date: Mon, 18 Nov 2024 16:52:11 +0300 Subject: [PATCH] feat: add buttons --- src/web/page/index.html | 8 ++++++-- src/web/static/styles/index.css | 12 ++++++------ 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/src/web/page/index.html b/src/web/page/index.html index 1c9296b..3dc0f1f 100644 --- a/src/web/page/index.html +++ b/src/web/page/index.html @@ -49,11 +49,15 @@

Creating graphs

-
-
+ \ No newline at end of file diff --git a/src/web/static/styles/index.css b/src/web/static/styles/index.css index 9995249..af19d34 100644 --- a/src/web/static/styles/index.css +++ b/src/web/static/styles/index.css @@ -83,12 +83,12 @@ body { font-weight: bold; } -.source-code-button-container { +.buttons-container { display: flex; justify-content: center; } -.source-code-button { +.pr-button { display: inline-flex; align-items: center; background-color: #297BCD; @@ -100,22 +100,22 @@ body { cursor: pointer; } -.source-code-button svg { +.pr-button svg { width: 30px; height: 30px; margin-right: 10px; } -.source-code-button a { +.pr-button a { color: white; text-decoration: none; } -.source-code-button:hover { +.pr-button:hover { background-color: #2b6ea3; } -.source-code-button { +.pr-button { margin-bottom: 130px; }