-
-
Notifications
You must be signed in to change notification settings - Fork 746
/
index.css
97 lines (82 loc) · 1.32 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
body {
margin: 0;
height: 2000px;
}
.icon-bar {
position: fixed;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
z-index: 1;
}
.icon-bar a {
display: block;
text-align: center;
padding: 16px;
transition: all 0.3s ease;
color: white;
font-size: 20px;
}
.icon-bar a:hover {
background-color: #eeebdd;
color: #3b5998;
}
.facebook {
background: #3b5998;
color: white;
}
.twitter {
background: #3b5998;
color: white;
}
.google {
background: #3b5998;
color: white;
}
.linkedin {
background: #3b5998;
color: white;
}
.youtube {
background: #3b5998;
color: white;
}
.darkmode-toggle {
position: absolute;
}
.darkmode-toggle {
background: #100f2c;
width: 3rem;
height: 3rem;
position: fixed;
border-radius: 50%;
border: 2px solid rgb(236, 236, 243);
left: 70.2rem;
top: 30px;
cursor: pointer;
transition: all 0.5s ease;
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
}
#menu .active {
color: #37517e;
background-color: white;
}
@media only screen and (max-width: 360px) {
a.linka{
font-size: 10px;
}
}
@media only screen and (max-width: 330px) {
a.linka {
display: none;
}
}
@media only screen and (min-width: 361px) {
a.linka {
font-size: 12px;
}
}