-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
99 lines (84 loc) · 1.58 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
/* styles.css */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #333;
color: white;
padding: 1em 0;
text-align: center;
}
nav ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
}
nav ul li {
margin: 0 1em;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
}
nav ul li a:hover {
text-decoration: underline;
}
section {
padding: 2em 0;
flex: 1;
}
.container {
width: 80%;
margin: 0 auto;
}
h2 {
border-bottom: 2px solid #333;
padding-bottom: 0.5em;
margin-bottom: 1em;
}
.skills, .portfolio {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.skill, .portfolio-item {
width: 30%;
margin: 1em 0;
background-color: rgba(231, 231, 231, 0.89);
padding: 1em;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.74);
border-radius: 8px;
}
.skill h3, .portfolio-item h3 {
margin-top: 0;
}
.button {
display: inline-block;
padding: 0.5em 1em;
color: rgb(0, 0, 0);
background-color: #c2c2c277;
text-decoration: none;
border-radius: 5px;
margin-top: 1em;
cursor: pointer;
font-size: 2em;
}
.button:hover {
background-color: #5e5e5e;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1em 0;
margin-top: auto;
width: 100%;
bottom: 0;
}