-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
124 lines (124 loc) · 2.65 KB
/
index.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
114
115
116
117
118
119
120
121
122
123
124
body {
margin: 0;
padding: 0;
}
a {
color: rgb(128, 255, 255);
text-decoration: none;
border-bottom: 1px rgb(255, 255, 255) dotted;
}
div.left {
position: absolute;
top: 0%;
bottom: 0px;
left: 0px;
right: 50%;
background: rgb(128, 128, 128);
padding: 32px;
}
div.right {
position: absolute;
top: 0px;
bottom: 0px;
left: 50%;
right: 0px;
}
img#the_img {
display: block;
margin-left: auto;
margin-right: auto;
max-width: 80%;
max-height: 80%;
}
textarea#the_message {
width: 100%;
height: 100%;
padding: 32px;
font-family: monospace;
font-size: 24px;
color: rgb(128, 128, 128);
resize: none;
outline: none;
border: none;
}
div#the_update_notif {
opacity: 0;
-webkit-transition: opacity 3s;
-moz-transition: opacity 3s;
transition: opacity 3s;
-webkit-transition: background 3s;
-moz-transition: background 3s;
transition: background 3s;
position: absolute;
bottom: 20px;
left: 30%;
right: 30%;
width: auto;
min-width: 180px;
height: auto;
font-family: sans-serif;
font-size: 18px;
background: rgba(128, 128, 128, 1.0);
border-radius: 30px;
padding: 15px;
color: rgb(255, 255, 255);
font-variant: small-caps;
}
div#the_update_notif.show {
opacity: 1;
background: rgba(0, 0, 0, 0.6);
}
div#the_golden_update_notif {
opacity: 0;
-webkit-transition: opacity 3s;
-moz-transition: opacity 3s;
transition: opacity 3s;
-webkit-transition: background 3s;
-moz-transition: background 3s;
transition: background 3s;
position: absolute;
bottom: 20px;
left: 30%;
right: 30%;
width: auto;
min-width: 180px;
height: auto;
font-family: sans-serif;
font-size: 18px;
background: rgba(128, 128, 128, 1.0);
border-radius: 30px;
padding: 15px;
color: rgb(255, 255, 255);
font-variant: small-caps;
}
div#the_golden_update_notif.show {
opacity: 1;
background: rgba(0, 0, 0, 0.6);
}
div#the_empty_notif {
opacity: 0;
-webkit-transition: opacity 3s;
-moz-transition: opacity 3s;
transition: opacity 3s;
-webkit-transition: background 3s;
-moz-transition: background 3s;
transition: background 3s;
position: absolute;
bottom: 20px;
left: 30%;
right: 30%;
width: auto;
min-width: 180px;
height: auto;
font-family: sans-serif;
font-size: 18px;
background: rgba(128, 128, 128, 1.0);
border-radius: 30px;
padding: 15px;
color: rgb(255, 255, 255);
font-variant: small-caps;
}
div#the_empty_notif.show {
opacity: 1;
background: rgba(0, 0, 0, 0.6);
}