-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
151 lines (147 loc) · 2.35 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
body {
padding: 0;
margin: 0;
font-family: "Poppins", sans-serif;
}
main {
overflow: hidden;
}
/* introduce section */
.introduce {
display: flex;
flex-direction: row;
align-content: stretch;
justify-content: space-around;
align-items: center;
}
.introduce-text h1 {
font-size: 50px;
font-weight: bold;
}
.introduce-text {
padding: 159px 192px 143px 101px;
}
.introduce-text span {
color: #ff8367;
}
.introduce-img img {
width: 500px;
margin-right: 69px;
}
.hire-me {
margin-top: 65px;
}
.hire-me a {
padding: 14px 50px;
text-decoration: none;
color: white;
background-color: #fa7261;
border-radius: 20px;
}
/* about section */
.about-text {
margin: 162px 83px 162px 162px;
}
.about-me-con {
display: flex;
}
.about-img img {
width: 500px;
margin-left: 69px;
}
.about-text h1 {
font-size: 50px;
}
/* my complated prohect */
.work-project-container {
background-color: #f8f9fc;
}
.work-project-container h1 {
text-align: center;
font-size: 30px;
padding: 141px 0px 66px 0px;
}
.work-project-container h1 > span {
color: #f46969;
}
.projects {
display: flex;
justify-content: center;
}
.project {
width: 348px;
margin-left: 41px;
border-radius: 20px;
background-color: white;
}
.project img {
width: 324px;
justify-content: center;
padding: 12px;
}
/* live chat */
.live-chat {
display: flex;
justify-content: center;
margin-top: 80px;
}
.live-chat img {
width: 50%;
}
.live-chat > div > {
}
/* footer section */
footer {
margin-top: 150px;
margin-bottom: 50px;
}
footer h1,
h3 {
text-align: center;
}
.p-tag {
padding: 3px 0px 0px 30px;
}
.icon {
display: flex;
justify-content: center;
}
.fab {
margin-left: 20px;
background-color: #ddd;
padding: 10px;
border-radius: 50%;
font-size: 20px;
}
.fab:hover {
color: tomato;
}
/* media query */
@media (max-width: 668px) {
.introduce {
flex-direction: column;
}
.introduce-img img {
margin-right: 0;
}
.about-me-con {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
}
.projects {
display: flex;
flex-direction: column;
align-content: space-between;
justify-content: space-around;
align-items: center;
}
.project h3,
p {
padding: 0;
}
.about-img img {
}
}