-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (80 loc) · 1.29 KB
/
style.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
/* import file __variable.css */
@import url("./__variable.css");
/* import file global.css */
@import url("./global.css");
/* start presentation */
.presentation
{
width: 600px;
padding-left:10px ;
box-sizing: border-box;
position: relative;
}
/* start photo */
.photo
{
margin-left: 80px;
}
.presentation .photo >img
{
height: 250px;
width: 250px;
border-radius:50% ;
}
/* ENd photo */
/* start propos */
.content
{
margin-left: 27px;
}
.content ul
{
list-style: none;
padding-left: 0px;
}
.content ul> li
{
margin-bottom: 20px;
}
.progress
{
height:3px ;
background-color: rgb(57, 57, 94);
}
.progress >.progress-bar
{
background-color:whitesmoke;
position: relative;
}
.progress-bar::before
{
content: "";
height: 20px;
width: 20px;
border-radius: 50%;
background-color: whitesmoke;
position: absolute ;
z-index: 10;
left: 100%;
}
/* ENd propos */
/* End presentation */
/* start about-me */
.about-me
{
background-color: lightgray;
width:60%;
}
.about,.work-experience,.education,.achievements,.hobbies
{
flex-grow: 0;
box-shadow: 2px 2px 2px grey,
-2px -2px 2px grey ;
border-radius: 3px;
}
.logo i
{
font-size: 40px;
margin-right: 20px;
}
/* end about-me */