-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
64 lines (52 loc) · 946 Bytes
/
styles.css
File metadata and controls
64 lines (52 loc) · 946 Bytes
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
body {
font-family: 'Roboto', sans-serif;
background-color: #3c3b3f;
color: #ffffff;
}
.container {
border-radius: 10px;
position: relative;
box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
padding: 20px;
margin: auto;
width: 80%;
background-color: #282828;
}
.language-switcher {
position: absolute;
right: 0;
top: 0;
padding: 10px;
}
.language-switcher img:hover {
transform: scale(1.1);
}
.social-icons a {
transition: all 0.3s ease-in-out;
margin-right: 10px;
text-decoration: none;
color: inherit;
}
.social-icons a:hover {
color: #007bff;
}
.social-icons i {
font-size: 24px;
}
.profile-pic {
border-radius: 50%;
width: 250px;
height: 250px;
}
.flag {
cursor: pointer;
transition: all 0.3s ease-in-out;
opacity: 0.6;
}
.flag.active {
transform: scale(1.1);
opacity: 1;
}
.second-container {
margin-top: 20px;
}