-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathall.scss
71 lines (65 loc) · 1.43 KB
/
all.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
@import "https://fonts.googleapis.com/icon?family=Material+Icons";
@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css";
@import "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css";
@import "https://www.w3schools.com/w3css/4/w3.css";
$lightGreen: rgba(47, 234, 43, 0.234);
$lightRed: rgba(234, 47, 43, 0.234);
$lightPurple: rgba(218, 112, 214, 0.234);
$bodyBgMove: bgmove 3s infinite; //body
body {
text-align: center;
-webkit-animation: $bodyBgMove;
-moz-animation: $bodyBgMove;
animation: $bodyBgMove;
}
.swal-button--confirm {
background-color: green;
}
.swal-button--cancel {
background-color: red;
}
//swal-overlay
.swal-overlay {
background-color: rgba(0, 255, 0, 0.4987);
}
//search button
#search-button-left {
transform: translate(300px, 10px);
text-align: center;
transition: all 0.5s;
cursor: pointer;
span {
cursor: pointer;
display: inline-block;
transition: 0.5s;
&:after {
content: '\00bb';
opacity: 0;
top: 0;
transition: 0.5s;
}
}
&:hover {
span {
padding-right: 10px;
&:after {
opacity: 1;
right: 0;
}
}
}
}
//languageChange
#lang-left {
transform: translateX(1000px);
}
$langList: arabicLang, chineseLang, dutchLang, englishLang, hindiLang, japaneseLang, urduLang;
@each $language in $langList {
##{$language} {
color: grey;
&:hover {
color: green;
background-color: $lightGreen;
}
}
}