-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (66 loc) · 1.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
div.bio{
display: inline-block;
background-color:aqua;
height: 300px;
width: 300px;
cursor: pointer;
position: absolute;
top: -50px;
left:300px;
}
.bio:hover{
background-color: rgb(1, 1, 15);
}
div.contacts{
display: inline-block;
background-color:rgb(190, 116, 5);
height: 300px;
width: 300px;
cursor: pointer;
position: absolute;
top: 550px;
left: 900px;
}
.contacts:hover{
background-color: rgb(175, 71, 71);
}
div.educ{
display: inline-block;
background-color:green;
width: 300px;
height: 300px;
margin: 0 auto;
cursor: pointer;
position: absolute;
top: 250px;
left: 600px;
}
.educ:hover{
background-color: rgba(6, 240, 150, 0.192);
}
div.myphoto{
display: inline-block;
background-color:rgba(238, 234, 22, 0.897);
height: 300px;
width: 300px;
cursor: pointer;
position:absolute;
top: -50px;
left: 900px;
}
.myphoto:hover{
background-color: rgb(178, 178, 206);
}
div.hobbies{
display: inline-block;
background-color:rgb(228, 26, 103);
height:300px;
width: 300px;
cursor: pointer;
position: absolute;
top:550px;
left: 300px;
}
.hobbies:hover{
background-color: rgba(16, 16, 219, 0.801);
}