-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmyinfo.css
98 lines (83 loc) · 1.47 KB
/
myinfo.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
body{
background-color: #549234;
padding-top: 5em;
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;
}
#villagers {
display: flex;
flex-direction: row;
background-color: #A6979C;
border-radius: 10px;
width: 70%;
overflow: scroll;
overflow-y: hidden;
}
#villagers img {
width: 8em;
margin: 1em;
}
.villager {
display: flex;
flex-direction: column;
text-align: center;
}
.critter {
padding-top: 3em;
display: flex;
text-align: center;
}
.critter img {
width: 3em;
padding: 0.5em;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
#holder{
display: flex;
flex-direction: column;
}
#bugs-box{
background-color: #8CD867;
border-radius: 10px;
display: flex;
width: 50%;
overflow: scroll;
overflow-y: hidden;
}
#fish-box, #sea-box{
background-color: #53a9b2;
border-radius: 10px;
display: flex;
width: 50%;
overflow: scroll;
overflow-y: hidden;
}