generated from ZanzyTHEbar/SolidJSTauri
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.css
More file actions
83 lines (73 loc) · 1.58 KB
/
index.css
File metadata and controls
83 lines (73 loc) · 1.58 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
input[type='password']::-ms-reveal,
input[type='password']::-ms-clear {
display: none;
}
#root {
text-align: center;
background-color: transparent;
margin: 0px;
box-sizing: border-box;
height: 100vh;
border-radius: 0.4rem;
background: #000f1a;
}
:root {
font-family: 'Prompt', sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 400;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
}
:root::before {
content: '';
width: 100%;
height: 100%;
background-image: var(--user-image);
background-size: contain;
background-position: center center;
background-repeat: no-repeat;
opacity: var(--image-opacity);
transition: background-image 300ms ease;
}
/* This style is REQUIRED due to how kobalte handles focus-visible state */
* {
outline: none;
}
*:focus-visible {
outline: 0px;
}
body {
margin: 0;
font-family: 'Prompt', sans-serif;
cursor: default;
background-color: transparent !important;
width: 100%;
height: 100vh;
text-align: center;
font-size: 14px;
}
.App {
text-align: center;
height: 100vh;
display: flex;
flex-direction: column;
flex-grow: 1;
}
.code {
border-radius: 4px;
padding: 3px 6px;
margin-left: 2px;
margin-right: 2px;
background-color: #65758529;
transition:
color 0.25s,
background-color 0.5s;
color: #a8b1ff;
}
.my-custom-toast {
text-align: left;
}