-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (76 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
body{
font-family: 'Play', sans-serif;
margin: 0;
}
h1{
font-size: 50px;
}
h2{
font-size: 35px;
}
span{
color: crimson;
}
section{
display: flex;
}
div{
padding: 2em;
width: 50%;
}
p{
margin-bottom: 50px;
font-size: 18px;
}
.top-image{
width: 100%;
padding-left: 50px;
align-items: flex-end;
}
.about-me{
margin-top: 50px;
padding-right: 70px;
}
.button{
margin-top: 20px;
text-decoration: none;
padding: 10px 30px;
background-color: tomato;
border-radius: 5px;
color: white;
background-image: linear-gradient(tomato, orange);
}
.top-section{
background-image: url(image/top-banner.png);
background-repeat: no-repeat;
padding-left: 30px;
}
.second-section{
background-image: url(image/dream-bg.png);
background-repeat: no-repeat;
background-position: right;
}
#exprience{
display: block;
padding-left: 60px;
}
.experience{
display: flex;
width: 95%;
margin-bottom: 8vh;
}
.item{
margin: 0 30px;
border-radius: 10px;
box-shadow: 2px 10px 30px 2px;
border-left: 8px solid ;
border-image: linear-gradient(tomato, cyan);
border-image-slice: 1;
}
.two{
border-image: linear-gradient(blue, crimson);
border-image-slice: 1;
}
footer{
text-align: center;
}