-
Notifications
You must be signed in to change notification settings - Fork 0
/
homestyle.css
51 lines (45 loc) · 866 Bytes
/
homestyle.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
body, html {
background-size: cover;
background-attachment: fixed;
height: 100%;
margin: 0;
font-family: Arial, sans-serif;
overflow: hidden;
}
.lock-screen {
height: 50%;
display: flex;
flex-direction: column;
align-items: center;
color: #fff;
font-size: 72px;
user-select: none;
touch-action: pan-y;
justify-content: flex-start;
}
.bottom-bar {
height: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-end;
}
.arrow {
font-size: 48px;
margin-bottom: 10px;
transition: transform 0.2s ease; /* Voeg deze regel toe */
}
.text {
font-size: 18px;
margin-bottom: 20px;
}
.clock {
font-size: 72px;
text-align: center;
margin-top: 120px;
color: #000; /* Zwart */
}
.date {
font-size: 24px;
color: #000;
}