-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfishCSS.css
126 lines (108 loc) · 2.02 KB
/
fishCSS.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
body{
display: flex;
background-color: #53a9b2;
font-family: 'Bree Serif', 'serif';
}
nav {
width: 100%;
height: 5em;
background-color: #028090;
position: fixed;
top: 0;
left: 0;
}
nav img{
margin: 3px;
}
nav a {
color: white;
font-size: 2em;
text-decoration: none;
padding-left: 1em;
padding-right: 1em;
}
nav a:hover {
color: aqua;
}
#push {
background-color: #028090;
justify-content: space-around;
justify-items: center;
width: 68%;
border-radius: 10px;
margin-top: 5em;
height: 89vh;
overflow: hidden;
overflow-y: scroll;
}
#container button {
width: 5em;
}
.fish {
display: inline-block;
flex-direction: column;
width: 11em;
text-align: center;
}
.fish > #name {
margin-top: 0px;
}
.fish > img {
background-color: #19c1d3;
border-radius: 20%;
width: 10em;
margin: 10px;
}
.fish > img:hover {
border-radius: 50%;
}
#info {
align-content: center;
justify-content: center;
position: fixed;
right: 10px;
display: flex;
flex-direction: column;
width: 30%;
}
#buttons {
top: 40px;
justify-content: space-around;
justify-items: center;
height: 25%;
margin-top: 1em;
display: flex;
flex-direction: column;
flex-wrap: wrap;
flex-flow: row wrap;
}
button {
font-family: 'Bree Serif', 'serif';
width: 30%;
margin: .5em;
}
#profile {
border-radius: 10%;
font-family: 'Bree Serif', serif;
right: 0;
display: flex;
flex-direction: column;
background-color: #19c1d3;
height: 50%;
text-align: left;
text-indent: 2em;
}
.name {
font-family: 'Bree Serif', serif;
text-transform: capitalize;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}