tylermullen commited on
Commit
6669f26
·
verified ·
1 Parent(s): 2d26b26

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +28 -0
style.css CHANGED
@@ -83,6 +83,34 @@ body {
83
  color: var(--primary-text-color);
84
  }
85
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  h1 {
87
  text-align: center;
88
  font-weight: 300;
 
83
  color: var(--primary-text-color);
84
  }
85
 
86
+ .version-info {
87
+ position: absolute;
88
+ top: 16px;
89
+ right: 80px;
90
+ display: flex;
91
+ align-items: center;
92
+ gap: 0.5rem;
93
+ }
94
+
95
+ #version-text {
96
+ font-size: 1rem;
97
+ color: var(--secondary-text-color);
98
+ }
99
+
100
+ #toggle-version-button {
101
+ background-color: var(--surface-color);
102
+ color: var(--primary-text-color);
103
+ border: 1px solid var(--border-color);
104
+ border-radius: 16px;
105
+ padding: 6px 12px;
106
+ cursor: pointer;
107
+ transition: background-color 0.2s;
108
+ }
109
+
110
+ #toggle-version-button:hover {
111
+ background-color: var(--border-color);
112
+ }
113
+
114
  h1 {
115
  text-align: center;
116
  font-weight: 300;