-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
158 lines (133 loc) · 2.14 KB
/
style.css
File metadata and controls
158 lines (133 loc) · 2.14 KB
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
* {
margin: 0;
padding: 0;
scroll-behavior: smooth;
font-family: Arial, sans-serif;
}
body {
background: #0e0e0e;
color: #e7e7e7;
}
/* NAVBAR */
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 18px 40px;
background: #141414;
position: sticky;
top: 0;
z-index: 1000;
}
header .logo {
font-size: 20px;
font-weight: bold;
color: blue;
}
nav a {
margin-left: 20px;
text-decoration: none;
color: #e7e7e7;
font-size: 15px;
}
nav a:hover {
color: #b4b4b4;
}
/* HERO */
.hero {
text-align: center;
padding: 120px 20px;
}
.hero h1 {
font-size: 26px;
font-weight: 600;
}
.hero p {
margin-top: 10px;
font-size: 15px;
line-height: 1.6;
color: #cccccc;
}
/* SECTIONS */
.section {
padding: 60px 40px;
border-bottom: 1px solid #1e1e1e;
}
.section h2 {
margin-bottom: 20px;
font-size: 22px;
}
/* SKILLS BLOCKS */
.skill-block {
margin: 12px 0;
colour: green;
}
.skill-block h3 {
font-weight: 600;
font-size: 16px;
margin-bottom: 3px;
}
/* LISTED ITEMS */
.item {
margin-bottom: 18px;
}
/* FOOTER */
footer {
padding: 20px;
text-align: center;
background: #141414;
font-size: 14px;
margin-top: 40px;
colour: red;
}
@media (max-width: 700px) {
nav a {
margin-left: 12px;
font-size: 14px;
}
header {
padding: 15px 20px;
}
.section {
padding: 40px 20px;
}
/*BUTTON*/
button {
padding: 8px 14px;
border: 1px solid #555;
background: #222;
color: white;
cursor: pointer;
border-radius: 4px;
}
#msg {
font-size: 22px;
margin-bottom: 10px;
}
/*CONNECT ME*/
}
.social-links {
text-align: center;
margin-top: 50px;
}
.social-links h2 {
font-size: 24px;
margin-bottom: 20px;
}
.social-links ul {
list-style: none;
padding: 0;
}
.social-links li {
margin: 12px 0;
}
.social-links a {
text-decoration: none;
font-size: 18px;
font-weight: bold;
color: #0366d6;
transition: 0.3s ease;
}
.social-links a:hover {
color: #ff6600;
}