-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.scss
More file actions
135 lines (116 loc) · 1.91 KB
/
main.scss
File metadata and controls
135 lines (116 loc) · 1.91 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
body{
background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
font-family: 'lato',sans-serif;
min-width: 320px;
}
.navbar{
background-color:#090A0F;
}
.navbar-nav li a{
color:#1f3e5a;
text-decoration:none;
}
.navbar-nav li a:hover{
color:white;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #090A0F;
}
::-webkit-scrollbar-thumb {
background: #1f3e5a;
}
::-webkit-scrollbar-thumb:hover {
background: white;
}
.info{
position:relative;
animation: slide-right 2s ease-in both;
}
.info a{
text-decoration: none;
color:#1f3e5a;
}
.info a:hover{
color: white;
}
#sun{
border-left: 6px solid white;
height: 41.517px;
text-align: center;
}
#mercury{
border-left: 6px solid white;
height: 31.1px;
text-align: center;
}
#venus{
border-left: 6px solid white;
height: 160.17px;
text-align: center;
}
#earth{
border-left: 6px solid white;
height: 166.8px;
text-align: center;
}
#mars{
border-left: 6px solid white;
height: 1000px;
text-align: center;
}
#jupiter{
border-left: 6px solid white;
height: 456px;
text-align: center;
}
#saturn{
border-left: 6px solid white;
height: 896px;
text-align: center;
}
#uranus{
border-left: 6px solid white;
height: 1011px;
text-align: center;
}
#neptune{
border-left: 6px solid white;
height: 2.231px;
text-align: center;
}
#pluto{
border-left: 6px solid white;
text-align: center;
}
.list-view{
color: white;
margin: 0 auto;
max-width: 1000px;
text-align:center;
width:50%;
}
.detail-view{
color:white;
margin: 0 auto;
max-width: 1000px;
max-height:2000px;
text-align:center;
width:50%;
height:100%;
position: relative;
top: 250px;
}
.spaceImg{
border: 2px solid rgb(43, 41, 41);
border-radius: 15px;
max-width: 100%;
max-height: 100%;
transition: 0s 1800s;
}
.spaceImg:hover{
border: 2px solid #1f3e5a;
transition: 0s;
}