-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
113 lines (101 loc) · 2.42 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
.clock-container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
margin: 1em 0em;
}
.clock-set{
margin: 1.0em 1.5em;
}
.clock-title {
text-shadow: 0 0 5px #F03157, 0 0 15px #F03157, 0 0 20px #F03157, 0 0 40px #F03157, 0 0 60px #ED0432, 0 0 10px #FF007F, 0 0 98px #ED0432;
color: #FFCEF2;
font-family: sans-serif;
text-align: center;
text-decoration: none;
display: block;
font-size: 1.4em;
font-weight: 500;
}
.clock {
text-shadow: 0 0 5px #ffa500, 0 0 15px #ffa500, 0 0 20px #ffa500, 0 0 40px #ffa500, 0 0 60px #ff0000, 0 0 10px #ff8d00, 0 0 98px #ff0000;
color: #fff6a9;
text-align: center;
font-size: 50pt;
font-family: sans-serif;
}
.day {
text-shadow: 0 0 5px #ffa500, 0 0 15px #ffa500, 0 0 20px #ffa500, 0 0 40px #ffa500, 0 0 60px #ff0000, 0 0 10px #ff8d00, 0 0 98px #ff0000;
color: #fff6a9;
text-align: center;
font-size: 20pt;
font-family: sans-serif;
}
body {
padding: 2vw;
display: flex;
justify-content: center;
align-items: center;
height: 80vh;
background: #222;
background-image: repeating-linear-gradient(
to bottom,
transparent 7px,
rgba(0, 0, 0, 0.8) 9px,
rgba(0, 0, 0, 0.8) 13px,
transparent 13px
);
}
.container {
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.bookmark-container {
display: flex;
flex-direction: row;
justify-content: center;
width: 55%;
margin: 1em 0em;
}
.bookmark-set{
padding: 1em;
border-radius: 6px;
font-family: sans-serif;
font-size: 12pt;
width: 25%;
height: 10em;
margin: 0em .5em;
}
.bookmark-inner-container {
overflow-y: sho;
height: 80%;
vertical-align: top;
}
.bookmark-title {
text-shadow: 0 0 5px #F03157, 0 0 15px #F03157, 0 0 20px #F03157, 0 0 40px #F03157, 0 0 60px #ED0432, 0 0 10px #FF007F, 0 0 98px #ED0432;
color: #FFCEF2;
font-family: sans-serif;
text-align: center;
text-decoration: none;
display:block;
font-size: 1.4em;
font-weight: 500;
margin: 0em 0em .35em 0em;
}
.bookmark {
text-shadow: 0 0 5px #6700E0, 0 0 15px #6700E0, 0 0 20px #6700E0, 0 0 40px #6700E0, 0 0 60px #6500F0, 0 0 10px #9939F7, 0 0 98px #6500F0;
color: #7CF6FF;
font-family: sans-serif;
text-align: center;
text-decoration: none;
display:block;
margin: .5em 0em;
}
.bookmark:hover {
color: #cefcff;
}