-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
184 lines (153 loc) · 3.02 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/*-----------------------Global Styles---------------------------*/
* {
margin: 0;
padding: 0;
}
body {
background-color: rgb(88, 10, 40);
color: white;
font-family: 'Quicksand', sans-serif;
line-height: 1.4;
}
nav {
height: 60px;
background-color: rgb(113, 11, 50);
display: flex;
justify-content: space-around;
align-items: center;
}
.left {
font-size: 1.3rem;
}
nav ul {
display: flex;
justify-content: center;
}
nav ul li {
list-style: none;
margin: 0px 18px;
}
nav ul li a {
text-decoration: none;
color: white;
}
nav ul li a:hover {
color: #ff98ab;
font-size: 1.01rem;
}
/*-----------------------Home---------------------------*/
.sectionone {
margin: 18px 0px;
display: flex;
justify-content: space-around;
}
.leftone {
/* background-color: rgb(113, 11, 50); */
font-size: 2.5rem;
/* width: 30%;
margin: 170px 0px; */
width: 30%;
margin: 130px 0px 170px 60px;
}
.myname {
font-size: 3rem;
color: #ff8da1;
}
.desc {
font-size: 1.2rem;
}
.clickbtn {
color: white;
padding: 11px;
border: 3px inset rgb(88, 10, 40);
font-size: 1.1rem;
font-family: 'Quicksand', sans-serif;
border-radius: 11px;
background-color: rgb(113, 11, 50);
}
.clickbtn a {
text-decoration: none;
color: white;
}
.clickbtn a:hover {
font-size: 1.15rem;
color: #ffa1b2;
}
.rightone {
width: 30%;
}
.rightone img {
width: 75%;
margin: 80px 7px;
border-radius: 0px 100px / 120px;
border-style: inset;
border-width: 5px;
border-color: rgb(113, 11, 50);
}
/*-----------------------Certificates---------------------------*/
.csec {
margin: 70px 200px;
display: flex;
justify-content: space-around;
border-bottom: 0.01em dashed #ff98ab;
/* background-color: white; */
/* height: 250px; */
}
.cleft {
width: 30%;
}
.cleft img {
width: 85%;
margin: 25px 25px 50px 25px;
border-radius: 10px;
border-style: inset;
border-width: 11px;
border-color: rgb(113, 11, 50);
padding: 0px;
}
.cright {
width: 45%;
/* background-color: white; */
margin: 45px 10px 25px 0px;
color: white;
padding-top: 0.8rem;
/* display: flex;
justify-content: space-around; */
/* text-align: center; */
}
.cright img {
width: 30px;
border: 2px inset #5d8be1;
padding: 1px;
}
/*-----------------------Contact Me---------------------------*/
.contact {
margin: 100px 500px 0px 500px;
display: flex;
justify-content: space-between;
border: inset #ff8da1 2px;
height: 100px;
}
.contactleft img {
width: 43%;
margin: 5px 5px 0px 5px;
border-radius: 10px;
border-style: inset;
border-width: 7px;
border-color: rgb(113, 11, 50);
padding: 0px;
}
.contactright {
width: 1000px;
margin: 30px 5px 10px 0px;
color: white;
font-size: 2rem;
}
.contactright a {
text-decoration: none;
color: #e9b0bc;
}
.contactright a:hover {
color: #ff8da1;
font-size: 2.1rem;
}