-
Notifications
You must be signed in to change notification settings - Fork 0
/
LanguagesTools.css
111 lines (110 loc) · 2.23 KB
/
LanguagesTools.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
.languagesTools{
position: fixed;
top: 20%;
left: calc(50% - 215px);
background-color: var(--card-bg-color);
z-index: 155;
border-radius: 30px;
min-width: 300px;
padding-left: 15px;
padding-right: 15px;
padding-bottom: 15px;
user-select: none;
width: 400px;
display: none;
transform: scale(0);
transition: transform .4s ease-in-out;
@media (max-width: 550px) {
width: 300px;
left: calc(50% - 165px);
}
font-family: "Lato", sans-serif;
}
.languagesTools h2{
color: var(--project-name-color);
width: 100%;
text-align: center;
font-weight: normal;
font-size: 25px;
}
.languagesTools h4{
font-size: 15px;
font-family: Arial, sans-serif;
width: 100%;
text-align: center;
color: var(--text-color);
opacity: .3;
margin-bottom: 25px;
}
.allLangIcon{
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
@media(max-width: 550px){
max-width: 300px;
}
}
.eachIconDiv{
width: 55px;
height: 55px;
padding: 5px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
margin-right: 15px;
margin-bottom: 15px;
background-color: rgb(65, 105, 225,.15);
@media(max-width: 550px){
width: 40px;
height: 40px;
}
}
.langIcon{
width: 35px;
height: 35px;
@media(max-width: 550px){
width: 25px;
height: 25px;
}
}
.langIconText{
position: absolute;
display: none;
user-select: none;
color: var(--text-color);
font-family: Calibri, sans-serif;
font-size: 14px;
opacity: .8;
@media(max-width: 550px){
font-size: 11px;
}
}
.eachIconDiv:hover{
/*border: 1px dashed var(--text-color);/**/
.langIconText{
display: block;
color: rgb(255,255,255,.9);
}
.langIcon{
opacity: 0.15;
}
}
#blackBox{
background-color: black;
width: 100vw;
height: 100vh;
z-index: 150;
position: absolute;
top: 0;
left: 0;
/*opacity: .85;*/
opacity: 0;
transition: opacity .35s ease-in-out;
display: none;
}
.langImagesCollection, .langIconsCollection{
display: none;
}