-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (88 loc) · 1.71 KB
/
Copy pathstyle.css
File metadata and controls
107 lines (88 loc) · 1.71 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
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,300;0,400;0,600;1,300&display=swap');
* {
margin: 0;
font-family: 'Titillium Web', sans-serif;
font-weight: 300;
text-decoration: none;
list-style: square;
}
.button {
margin-top: 2%;
width: fit-content;
background-color: #ff8282;
padding: 3px 10px;
border-radius: 15px;
transition: 0.2s;
}
.button:hover {
transform: scale(1.2);
box-shadow: #ffbfbf 0px 10px 36px 0px, #ffbfbf 0px 0px 0px 1px;
}
.button a {
font-weight: 600;
color: #000000;
}
body {
display: flex;
}
.bold-text {
font-weight: 600;
font-size: 1.2em;
}
.i-text {
font-style: italic;
font-size: 0.9em;
color: grey;
}
#profile-container {
position: fixed;
border: 1px solid rgb(240, 240, 240);
border-radius: 3px;
width: 35%;
height: 670px;
margin: 2%;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.header {
margin: 0;
padding: 5%;
color: white;
background-color: #000000;
}
.name {
font-size: 3em;
font-weight: 600;
color: #ff8282;
}
.job {
font-style: italic;
font-size: 1.2em;
}
.profile-body {
padding: 5%;
background-color: white;
}
.skill-content {
display: flex;
justify-content: space-between;
}
#content-container {
display: flex;
flex-direction: column;
/* border: 1px solid black; */
width: 57%;
height: auto;
margin: 2% 2% 2% 39%;
row-gap: 15px;
}
.content {
border: 1px solid rgb(240, 240, 240);
background-color: white;
border-radius: 3px;
padding: 2%;
height: auto;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.content-description {
padding-top: 1%;
}