-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
117 lines (99 loc) · 2.06 KB
/
styles.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
@font-face {
font-family: boldy;
src: url("COPRGTB.TTF");
}
@font-face {
font-family: lighty;
src: url("COPRGTL.TTF");
}
.bg-imag {
background-image: linear-gradient(to bottom right,
dodgerblue 45%, powderblue);
background-attachment: fixed; /* Keeps the background fixed */
background-size: cover; /* Ensures the gradient covers the full area */
background-position: center; /* Centers the gradient */
height: 100vh; /* Ensures it fills the full viewport height */
overflow-y: auto; /* Allows content to scroll */
margin: 0;
padding: 0;
}
section {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
section .container {
margin: 100px;
}
.reveal {
transition: 2s all ease;
}
.nav-link:hover {
color: white;
background-color: #555;
}
.nav-link:focus {
color: black;
background-color: white;
}
.profile {
text-align: center;
}
.profile-picture {
width: 200px;
height: 200px;
border-style: solid;
border-radius: 50%;
margin-bottom: 20px;
background-color: white;
}
.name {
font-size: 28px;
margin-bottom: 10px;
font-family: "boldy";
color: rgb(10, 10, 10);
}
.bio {
font-family: "lighty";
font-size: 18px;
color: rgb(84, 84, 84);
margin-bottom: 20px;
}
.social-links {
list-style-type: none;
padding: 0;
margin: 0;
}
.social-links li {
display: inline-block;
margin: 0 5px;
}
.social-links a {
color: #555;
font-size: 24px;
transition: color 0.3s ease-in-out;
}
.fa-linkedin:hover {
color: #0A66C2;
}
.fa-twitter:hover {
color: #007bff;
}
.fa-github:hover {
color: #f0f8ff;
background-color: black;
border-radius: 50%;
}
.back {
background-color: transparent;
width: fit-content;
border: none;
}
footer {
display: flex;
padding-left: 10px;
height: 4em;
background-color: #777;
align-items: center
}