-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprotfolio.css
109 lines (102 loc) · 1.48 KB
/
protfolio.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
body{
font-family: Verdana, Helvetica, Arial, sans-serif;
background-color:#CDC1C5;
}
div#header{
font-weight:bold;
color:white;
background-color:purple;
height:80px;
padding:30px;
}
a{
color:white;
outline: 0;
}
#header a:hover{
color:gray;
padding:15px;
background-color:white;
text-decoration:none;
}
#details{
margin-left:auto;
margin-right:auto;
text-align:center;
}
#about{
height:800px;
background-color:#BDA0CB;
padding:8px;
}
#image{
margin:30px;
top:200px;
text-align:center;
}
#image img{
border-radius:50%;
}
.skills{
float:left;
top:550px;
height:177px;
width:280px;
padding:24px;
margin-left:24px;
text-align:left;
background-color:#BF5FFF;
}
.skills:nth-child(2n){
background-color:#CDB5CD;
}
#protfolio{
text-align:center;
height:800px;
background-color:#CC99CC;
padding:15px;
}
.projects{
float:left;
margin-left:70px;
margin-bottom:5px;
border:#9F5F9F solid;
}
.projects td{
padding:5px;
}
.projects img{
height:150px;
width:300px;
}
#contact{
text-align:center;
height:350px;
background-color:#BDA0CB;
padding:15px;
}
.mail{
float:left;
height:200px;
width:550px;
padding:24px;
margin-left:24px;
text-align:left;
background-color:#BF5FFF;
}
.mail:nth-child(2n){
background-color:#CDB5CD;
}
#icons td{
padding:20px;
width:180px;
}
#footer{
top:2000px;
font-weight:bold;
color:white;
background-color:purple;
text-align:center;
height:80px;
padding:30px;
}