-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.scss
88 lines (71 loc) · 1.54 KB
/
styles.scss
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
/*Tools*/
@import "scss/01-tools/fluid";
/*Generic*/
@import "scss/02-generic/resets";
@import "scss/02-generic/generic";
/*Layout*/
@import "scss/03-layout/grid";
/*Components*/
@import "scss/04-components/buttons";
@import "scss/04-components/card";
@import "scss/04-components/title";
@import "scss/04-components/icon";
@import "scss/04-components/post";
@import "scss/04-components/read-format";
@import "scss/04-components/table";
@import "scss/04-components/tabs";
@import "scss/04-components/loading";
/*Utilities*/
@import "scss/05-utilities/utilities";
.twitter-hidden iframe {
display: none !important;
}
/* Notification
*============================================================================*/
.notification {
&-container {
width: 100vw;
height: 100vh;
position: fixed;
content: '';
top: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
&::before {
content: '';
position: absolute;
width: 100%;
height: 100%;
background: #1a2b33;
opacity: .3;
}
}
&-text {
color: black;
}
&-inner {
text-align: center;
padding: 20px;
background: white;
border: 1px solid rgba(0, 0, 0, 0.12);
display: flex;
flex-direction: column;
justify-content: center;
width: 400px;
height: 200px;
z-index: 2;
}
&-success {
margin-top: 10px;
padding: 10px;
border:1px solid rgba(0, 0, 0, 0.12);
}
&-error {
margin-top: 10px;
background: crimson;
color: white;
padding: 10px;
}
}