-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (66 loc) · 1.27 KB
/
style.css
File metadata and controls
74 lines (66 loc) · 1.27 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
@import '@screenly/edge-apps/styles';
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
overflow: hidden;
color: white;
font-family: 'Inter', system-ui, sans-serif;
background: url('/static/images/bg.webp') no-repeat center center;
background-size: cover;
}
auto-scaler {
position: fixed;
top: 0;
left: 0;
}
#app {
display: flex;
flex-direction: column;
width: 100vw;
height: 100vh;
padding: 1.25rem;
gap: 1rem;
}
.header {
flex-shrink: 0;
width: 100%;
}
.content {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
padding-left: 22.0625rem;
gap: 0.5rem;
}
.welcome-heading {
font-size: 11.25rem;
font-weight: 500;
letter-spacing: -0.055em;
line-height: 1;
margin: 0;
text-shadow:
0 0.125rem 0.5rem rgba(0, 0, 0, 0.3),
0 0.0625rem 0.125rem rgba(0, 0, 0, 0.15);
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
.welcome-message {
font-size: 4rem;
font-weight: 500;
letter-spacing: -0.047em;
line-height: 1.2;
margin: 0;
text-shadow:
0 0.125rem 0.5rem rgba(0, 0, 0, 0.3),
0 0.0625rem 0.125rem rgba(0, 0, 0, 0.15);
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
}