-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (90 loc) · 1.63 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
body{
margin: 0;
font-family: 'Poppins', sans-serif;
}
section{
height: 500px;
padding-top: 20px;
margin-bottom: 100px;
}
.top-banner{
background-image: url(images/top-banner.png);
background-repeat: no-repeat;
}
.half-width{
margin-top: 20px;
width: 40%;
float: left;
margin-left: 5%;
padding-left: 2%;
}
h1{
font-size: 50px;
}
h1 span{
color: orange;
}
p{
color: dimgray;
margin-bottom: 50px;
}
.anchor-button{
text-decoration: none;
background-image: linear-gradient(orange, tomato);
padding: 10px 40px;
border-radius: 5px;
font-weight: 700;
color: white;
}
.half-width img{
width: 100%;
}
.dream-area{
background-image: url(images/dream-bg.png);
background-repeat: no-repeat;
background-position: right;
}
.experience-area{
background-image: url("images/exp-bg1.png");
background-repeat: no-repeat;
background-position: left;
margin-top: 10%;
}
.experience-area .title{
text-align: left;
margin-left: 5%;
}
.d-flex{
display: flex;
margin-right: 5%;
}
.experience-area h2{
font-size: 30px;
}
.experience-area h3{
color: orange;
}
.experince-item{
box-shadow: 0px 0px 20px gray;
width: 40%;
margin-left: 5%;
padding: 20px 30px;
border-radius: 10px;
}
#full-stack{
border-left: 7px solid;
border-image: linear-gradient(180deg, orange, aqua);
border-image-slice: 1;
}
#graphic-designer{
border-left: 7px solid;
border-image: linear-gradient(180deg, blue, cyan);
border-image-slice: 1;
}
footer{
overflow: hidden;
margin-top: 2%;
}
footer p{
text-align: center;
}