-
Notifications
You must be signed in to change notification settings - Fork 0
/
startingjs.css
88 lines (82 loc) · 1.81 KB
/
startingjs.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
87
88
@font-face {
font-family:DS-Digital;
src: url(DS-DIGI.TTF);
}
#subclockplaceholder{
display: flex;
flex-direction: column;
height: 30vh;
width: 50vw;
background-color: rgb(1, 6, 39);
border-radius: 40px ;
border: solid 2vw rgb(2, 38, 75);
align-items: center;
justify-content: center;
}
#clockplaceholder{
display: flex;
flex-direction: row;
margin-top: 30vh;
align-items: center;
justify-content: center;
height: 40vh;
width: 100vw;
}
button{
height:8vh;
width:16vw;
margin: 2px;
font-size: 2vw;
border-radius: 10px ;
color:rgb(19, 0, 0);
font-family:DS-Digital;
}
#daybtn{
color: black;
background-color:rgb(255, 230, 4) ;
border: solid 0.25vw rgb(253, 88, 0);
}
#nightbtn{
color: rgb(255, 255, 255);
background-color:rgb(10, 0, 82) ;
border: solid 0.25vw rgb(9, 7, 38);
text-shadow:
0 0 7px #fff,
0 0 10px #fff,
0 0 21px #fff,
0 0 42px rgb(6, 88, 165),
0 0 82px rgb(6, 88, 165),
0 0 92px rgb(6, 88, 165),
0 0 102px rgb(6, 88, 165),
0 0 151px rgb(6, 88, 165);
}
#ClockMainScript{
color: aliceblue;
margin: 0;
text-shadow:
0 0 7px #fff,
0 0 10px #fff,
0 0 21px #fff,
0 0 42px rgb(6, 88, 165),
0 0 82px rgb(6, 88, 165),
0 0 92px rgb(6, 88, 165),
0 0 102px rgb(6, 88, 165),
0 0 151px rgb(6, 88, 165);
font-family:DS-Digital;
font-size: 10vw;
height: auto;}
#DateMainScript{
font-family: DS-Digital;
margin: 0;
color: aliceblue;
text-shadow:
0 0 7px #fff,
0 0 10px #fff,
0 0 21px #fff,
0 0 42px rgb(0, 215, 25),
0 0 82px rgb(0, 215, 25),
0 0 92px rgb(0, 215, 25),
0 0 102px rgb(0, 215, 25),
0 0 151px rgb(0, 215, 25);
font-size: 3vw;
}