summaryrefslogtreecommitdiff
path: root/themes/PaperMod/assets/css/common/profile-mode.css
diff options
context:
space:
mode:
Diffstat (limited to 'themes/PaperMod/assets/css/common/profile-mode.css')
-rw-r--r--themes/PaperMod/assets/css/common/profile-mode.css43
1 files changed, 43 insertions, 0 deletions
diff --git a/themes/PaperMod/assets/css/common/profile-mode.css b/themes/PaperMod/assets/css/common/profile-mode.css
new file mode 100644
index 0000000..9e98df5
--- /dev/null
+++ b/themes/PaperMod/assets/css/common/profile-mode.css
@@ -0,0 +1,43 @@
+.buttons,
+.main .profile {
+ display: flex;
+ justify-content: center;
+}
+
+.main .profile {
+ align-items: center;
+ min-height: calc(100vh - var(--header-height) - var(--footer-height) - (var(--gap) * 2));
+ text-align: center;
+}
+
+.profile .profile_inner {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ gap: 10px;
+}
+
+.profile img {
+ border-radius: 50%;
+}
+
+.buttons {
+ flex-wrap: wrap;
+ max-width: 400px;
+}
+
+.button {
+ background: var(--tertiary);
+ border-radius: var(--radius);
+ margin: 8px;
+ padding: 6px;
+ transition: transform 0.1s;
+}
+
+.button-inner {
+ padding: 0 8px;
+}
+
+.button:active {
+ transform: scale(0.96);
+}