-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (41 loc) · 806 Bytes
/
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
html {
background-color: #e9ecef;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
#profileImage {
border: 1px solid black;
border-radius: 50%;
margin: 1em 3em 1em 1em;
vertical-align: top;
}
#personalDetails {
display: inline-block;
}
#output {
margin: 1em;
display: inline-block;
padding: 10px 25px;
border: 1px solid black;
border-radius: 15px;
}
#output>h2 {
text-decoration: underline;
}
#output>a {
transition-duration: 350ms;
transition-timing-function: ease-in-out;
}
#output>a:hover {
color: mediumblue;
font-size: large;
font-weight: 600;
}
h1#fullName {
color: mediumblue;
font-size: 2.5em;
font-weight: 100;
}
#githubLink, #linkedinLink, #singleRepo {
text-decoration: none;
color: black;
}