-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainpage.css
More file actions
111 lines (90 loc) · 1.58 KB
/
Copy pathmainpage.css
File metadata and controls
111 lines (90 loc) · 1.58 KB
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
.header{
cursor: pointer;
line-height: 65px;
border: 1px solid #000000;
height: 64px;
display: table-cell;
vertical-align: middle;
}
.hide{
border:1px solid black;
}
.hidden1{
display: none;
}
.hidden2{
display: none;
}
.hidden3{
display: none;
}
.hidden4{
display: none;
}
.hidden5{
display: none;
}
.fitness:hover + .hidden1{
position: fixed;
top: 7%;
width: 19.4%;
display: inline-block;
}
.mental:hover + .hidden2{
position: fixed;
top: 7%;
left: 20%;
width: 19.9%;
display: inline-block;
}
.habits:hover + .hidden3{
position: fixed;
top: 7%;
left: 40%;
width: 19.9%;
display: inline-block;
}
.skin:hover + .hidden4{
position:fixed;
top: 7%;
left: 60%;
width: 19.9%;
display:inline-block;
}
.about:hover + .hidden5{
position:fixed;
top: 7%;
left:80%;
width: 19.9%;
display:inline-block;
}
.fitness{
position: fixed;
text-align: center;
display:inline-block;
width: 19.4%
}
.mental{
position: fixed;
text-align: center;
left:20%;
display: inline-block;
width: 19.9%;
}
.habits{display: inline-block;
text-align: center;
left: 40%;
position: fixed;
width: 19.9%;}
.skin{display: inline-block;
text-align: center;
left: 60%;
position: fixed;
width:19.9%}
.about{
display:inline-block;
left:80%;
text-align: center;
position: fixed;
width:19.8%
}