-
Notifications
You must be signed in to change notification settings - Fork 0
/
view.css
58 lines (53 loc) · 1.4 KB
/
view.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
@charset "UTF-8";
/*
by: 🙇🏾♂️ יהוה 🤲🏾 & michael🇬🇾👨🏾💻🇺🇸lee@iskitz
on: { 201711117.2 : -7 }
to: { 578311012.1 : -8 }
go: https://github.com/ionified/wakatta-ions.iskitz.net/
is: setting html & body height to 100% to ensure full page swipe detection
we: seek vertically & horizontally -centered text display
*/
html, body
{ box-sizing : border-box
; margin : 0
; border : 0px solid #f00 /*seek*/
; padding : 0
; height : 100%
; overscroll-behavior : none
}
body
{ animation-name : unset
; background-color : #000
; color : chocolate
; font-family : "hiragino mincho pron", ui-rounded, cursive
; font-size : 5em
; border : 0px solid #0f0 /*seek*/
; padding-top : 46%
; text-align : center
}
body.fade
{ animation : 2.5s infinite alternate fade
}
body.yes
{ animation-name : none
; color : #4c4
}
body.no
{ animation-name : none
; color : darkred
}
@keyframes fade
{ from
{ color : #111
; opacity : 0%
}
/*50%
{ color : chocolate
; opacity : 50%
}*/
to
{ color : chocolate
; opacity : 100%
}
}