-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
85 lines (73 loc) · 1.45 KB
/
about.css
File metadata and controls
85 lines (73 loc) · 1.45 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
img {
border: 1px solid red;
clip-path: circle(40%);
/* height: 300px;
width: 300px;
border-radius: 150px; */
margin: -18% 0;
}
em {
font-weight: 700;
color: var(--sec-color);
}
main {
margin-top: 15vh;
text-align: center;
}
main > h2 {
text-align: center;
}
article {
margin-bottom: 4rem;
text-align: left;
}
article p {
color: var(--bg-color);
}
figure p {
font-weight: bold;
font-size: 1.3rem;
color: var(--other-blue);
text-align: center;
}
figure p:last-child {
color: var(--sec-color);
font-size: 1.2rem;
}
figcaption {
margin-bottom: var(--bottom-margin);
}
.skills h2 {
font-size: 1.8rem;
margin-bottom: var(--bottom-margin);
text-align: center;
}
.skills li {
display: grid;
grid-template-columns: 80px 100px;
gap: 20px;
align-items: center;
justify-content: center;
margin-bottom: var(--bottom-margin);
padding: 10px 0;
/* box-shadow: 1px 6px 10px 0 rgba(0, 0, 0, .2),
1px -11px 10px aliceblue; */
}
.skills i {
background-color: linear-gradient(22deg, #e6e6e6, #fff);
box-shadow: 6px 6px 10px 0 rgba(0, 0, 0, .2),
1px 0px 10px #fff;
height: 60px;
width: 80px;
border-radius: 50%;
font-size: 2rem;
display: flex;
justify-content: center;
align-items: center;
margin-right: auto;
}
.skills span {
color: var(--other-blue);
font-weight: bold;
margin-right: auto;
}