-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.css
86 lines (84 loc) · 1.31 KB
/
portfolio.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
body {
font-family: Avenir;
}
.wrapper {
max-width: 500%;
background-color: rgb(250, 250, 250);
width: 800px;
margin: 0 auto;
border-radius: 14px;
}
.overall {
background-image: radial-gradient(red, cyan, rgb(228, 48, 108));
width: 860px;
padding: 20px 10px;
margin: auto;
border-radius: 24px;
}
.navigation {
display: flex;
justify-content: space-between;
margin: 20px 34px;
}
li {
list-style-type: none;
}
.navlink {
display: flex;
}
ul li {
padding-left: 14px;
}
button {
padding: 8px 14px;
color: white;
background-color: black;
border: none;
border-radius: 4px;
}
.photo {
width: 180px;
border-radius: 120px;
}
.img-style {
height: 320px;
background-image: radial-gradient(red, cyan, rgb(145, 145, 233));
border-radius: 120px;
}
.about-me {
display: flex;
margin: 0 34px;
padding-top: 0;
}
.aboutme-text {
padding-top: 40px;
padding-left: 34px;
}
.aboutme-text p {
width: 500px;
}
.journey {
display: flex;
margin: 34px;
padding-bottom: 20px;
}
.journey span li {
font-family: avenir bold;
margin: 4px;
text-transform: uppercase;
border: 1px solid rgba(0, 0, 0, 0.13);
border-radius: 4px;
padding: 2px;
font-size: 12px;
}
.my-journey {
width: 400px;
}
a {
color: black;
}
.skills {
margin-left: 4px;
display: flex;
padding-top: 70px;
}