-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathnotie.css
109 lines (91 loc) · 2.33 KB
/
notie.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
.notie-container {
font-size: 1.6rem;
height: auto;
left: 0;
position: fixed;
text-align: center;
width: 100%;
z-index: 2147483647;
box-sizing: border-box;
-o-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
-ms-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5); }
@media screen and (max-width: 900px) {
.notie-container {
font-size: 1.4rem; } }
@media screen and (max-width: 750px) {
.notie-container {
font-size: 1.2rem; } }
@media screen and (max-width: 400px) {
.notie-container {
font-size: 1rem; } }
.notie-background-success {
background-color: #57BF57; }
.notie-background-warning {
background-color: #D6A14D; }
.notie-background-error {
background-color: #E1715B; }
.notie-background-info {
background-color: #4D82D6; }
.notie-background-neutral {
background-color: #A0A0A0; }
.notie-background-overlay {
background-color: #FFFFFF; }
.notie-textbox {
color: #FFFFFF;
padding: 20px; }
.notie-textbox-inner {
margin: 0 auto;
max-width: 900px; }
.notie-overlay {
height: 100%;
left: 0;
opacity: 0;
position: fixed;
top: 0;
width: 100%;
z-index: 2147483646; }
.notie-button {
color: #FFFFFF;
padding: 10px;
cursor: pointer; }
.notie-element {
color: #FFFFFF;
padding: 10px; }
.notie-element-half {
display: inline-block;
width: 50%;
box-sizing: border-box; }
.notie-element-third {
display: inline-block;
width: 33.3333%;
box-sizing: border-box; }
.notie-alert {
cursor: pointer; }
.notie-input-field {
background-color: #FFFFFF;
border: 0;
font-family: inherit;
font-size: inherit;
outline: 0;
padding: 10px;
text-align: center;
width: 100%;
box-sizing: border-box; }
.notie-select-choice-repeated {
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
box-sizing: border-box; }
.notie-date-selector-inner {
margin: 0 auto;
max-width: 900px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none; }
.notie-date-selector-inner [contenteditable], .notie-date-selector-inner [contenteditable]:focus {
outline: 0px solid transparent; }
.notie-date-selector-up {
transform: rotate(180deg); }