-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (59 loc) · 1.53 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
:root {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;
color-scheme: light dark;
color: rgba(255, 255, 255, 0.87);
background-color: #ff000000;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
scrollbar-width: none; /* For Firefox */
-ms-overflow-style: none; /* For Internet Explorer and Edge */
}
::-webkit-scrollbar {
display: none; /* For Chrome, Safari, and Opera */
}
html, body, #app {
margin: 0;
padding: 0;
user-select: none;
width: 100%;
height: 100%;
border-radius: 50%;
}
#app {
background-color: #ffffff00;
/* Center content inside the circle */
display: flex;
justify-content: center;
align-items: center;
overflow: hidden; /* Ensures nothing spills outside the circle */
}
.selectLayer {
overflow: hidden;
width: 100%;
height: 100%;
border-radius: 50%;
display: flex;
justify-content: center; /* Adjusted to center */
align-items: center; /* Added to vertically center */
position: fixed;
top: 0;
left: 0;
text-align: center ;
right: 0;
}
input[type="text"], input[type="text"]:focus {
padding: 8px;
margin: 0 auto; /* Center horizontally */
box-sizing: border-box;
background-color: #7777773c; /* Adjust as needed */
display: block;
text-align: center;
width: 100%;
font-size: 18px;
border: 0px solid #cccccc37; /* Adjust or remove border as needed */
outline: none; /* Removes the default focus outline */
}