-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutp.css
68 lines (60 loc) · 1.05 KB
/
aboutp.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
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f0f0f0;
overflow: hidden;
}
.background-gif {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background-image: url(bw.gif);
background-repeat: no-repeat;
background-size: cover;
opacity: 0.5;
}
.content {
position: relative;
padding: 20px;
max-width: 600px;
margin: 0 auto;
background-color:rgb(4, 4, 92);
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
z-index: 1;
}
h1 {
text-align: center;
color: #fff;
}
h2{
color: #fff;
}
p {
margin-bottom: 20px;
color: #fff;
}
.skills {
display: flex;
justify-content: space-between;
color: #fff;
}
.skill {
text-align: center;
flex: 1;
color: #fff;
}
.skill img {
width: 80px;
height: 80px;
margin-bottom: 10px;
color: #fff;
}
.skill span {
display: block;
font-weight: bold;
}