-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
99 lines (82 loc) · 1.26 KB
/
style.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
body {
font-family: 'Poppins', sans-serif;
color: #413E3F;
max-width: 720px;
margin: 0 auto;
padding: 24px;
}
h1 {
font-size: 32px;
}
hr {
border-color: #413E3F;
border-width: 0.5px;
}
#header {
text-align: center;
}
#header p {
line-height: 32px;
}
#header #header-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
margin: 32px 0;
}
#header #header-links a {
margin: 8px;
cursor: pointer;
}
#talks {
margin-top: 32px;
}
a, a:visited, a:active {
color: #413E3F;
text-decoration: none;
border-bottom: 2px #413E3F dotted;
cursor: help;
}
a:hover {
border-bottom: 2px #413E3F solid;
}
.profile-picture {
width: 180px;
border-radius: 50%;
}
.main-link {
position: relative;
border: 2px solid #413E3F;
border-bottom-width: 4px;
color: #413E3F;
padding: 8px 12px;
text-decoration: none;
font-weight: bold;
transition: color 0.08s ease-in;
}
.main-link:hover {
color: #fff;
}
.main-link:before {
content: "";
position: absolute;
background: #413E3F;
bottom: 0;
left: 0;
right: 0;
top: 100%;
z-index: -1;
transition: top 0.09s ease-in;
}
.main-link:hover:before {
top: 0;
}
.main-link i {
margin-right: 8px;
}
.talk {
margin-bottom: 24px;
}
.talk .title {
font-weight: bold;
}