-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (74 loc) · 1.69 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nuosu+SIL&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.dark-mode {
background-color: white;
}
button{
font-family:Nuosu SIL ;
padding: 10px;
font-size: 20px;
background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
}
.text-gradient {
font-size: 4em;
font-weight: bold;
text-align: center;
color: darkblue;
}
@supports (--css: variables) {
.text-gradient {
background: linear-gradient(to right, darkblue, darkorchid);
color: transparent;
-webkit-background-clip: text;
background-clip: text;
}
}
.text-gradient::-moz-selection {
color: white;
background: darkorchid;
}
.text-gradient::selection {
color: white;
background: darkorchid;
}
h1 {
font-size: 50px;
font-family: 'Nuosu SIL', serif;
}
html,
body {
height: 100%;
}
body {
display: grid;
place-items: center;
background: #131419;
}
.clock {
background: #131419;
height: 120px;
line-height: 120px;
text-align: center;
padding: 0 30px;
box-shadow: -3px -3px 7px rgba(255, 255, 255, 0.05),
3px 3px 5px rgba(0, 0, 0, 0.5);
}
.clock .display {
padding: 0%;
height: auto;
color: rgb(50, 255, 101);
border-radius: 12px;
background: linear-gradient(135deg, #14ffe9, #ffeb3b, #ff00e0);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: animate 1.5s linear infinite;
font-size: 60px;
color: cyan;
letter-spacing: 5px;
font-family: 'Orbitron', sans-serif;
}