-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
114 lines (100 loc) · 1.83 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
body{
font-family: 'Poppins', sans-serif;
font-weight: 300;
font-size: 15px;
line-height: 1.6;
color: #fff;
background-color: #1f2029;
height: 100vh;
perspective: 800px;
}
header {
background-color: #333;
color: white;
padding: 1em 0;
}
footer {
background-color: #333;
display: flex;
justify-content: center;
}
footer a:hover {
text-decoration: underline;
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
margin: 0;
padding: 0;
}
nav li {
margin: 0 1em;
}
nav a {
color: white;
text-decoration: none;
}
section {
padding: 2em;
text-align: center;
}
.project {
border: 1px solid #ccc;
margin: 1em 0;
padding: 1em;
}
.profile-pic {
width: 150px;
height: 150px;
display: block;
}
.profile-pic {
width: 100%;
height: 100%;
border-radius: 50%;
}
.skills-list {
list-style: none;
padding: 0;
}
.skills-list li {
background: #4CAF50;
color: white;
padding: 0.5em;
margin: 0.5em;
border-radius: 5px;
display: inline-block;
}
input[type="submit"] {
display: block;
width: 60%;
margin: 1em auto;
height: 2em;
font-size: 1.1rem;
background-color: #3b3b4f;
border-color: white;
min-width: 300px;
}
nav > ul > li:hover {
background-color: #dfdfe2;
color: #1b1b32;
cursor: pointer;
}
#back-to-top {
display: none;
position: fixed;
bottom: 30px;
right: 30px;
z-index: 100;
background-color: #000000;
color: white;
border: none;
padding: 1em;
border-radius: 50%;
cursor: pointer;
font-size: 1.5em;
}
#back-to-top:hover {
background-color: #000000;
}