-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (60 loc) · 1.34 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
.tab {
overflow: hidden;
border: 30px solid black;
/* background-color: #4169e1; */
}
.spacing {
margin-bottom: 10px;
}
.header {
color: black;
}
.landing-title {
font-size: 26pt;
font-family: CircularStd,sans-serif;
/* font-weight: 900; */
}
.aboutMe {
padding-top: 10px;
padding-bottom: 30px;
text-align: justify;
}
.resume {
padding-top: 30px;
padding-bottom: 30px;
}
#myBtn {
display: none; /* Hidden by default */
position: fixed; /* Displays arrow */
bottom: 20px; /* Place the button at the bottom of the page */
right: 20px; /* Place the button 20px from the right */
z-index: 99; /* Make sure it does not overlap */
border: none; /* Remove borders */
background-color: #4169e1; /* Arrow color */
color: #FFFFFF; /* Arrow background is teal blue */
cursor: pointer; /* Add a mouse pointer on hover */
padding: 0.1px;
border-radius: 10px; /* Rounded corners */
font-size: 20px;
}
#myBtn:hover {
background-color: white; /* Adds a white background on hover */
}
.linkedin {
transition: transform .2s; /* Animation */
}
.linkedin:hover {
transform: scale(1.5);
}
.github {
transition: transform .2s; /* Animation */
}
.github:hover {
transform: scale(1.5);
}
.email {
transition: transform .2s; /* Animation */
}
.email:hover {
transform: scale(1.5);
}