-
Notifications
You must be signed in to change notification settings - Fork 0
/
mystyle.css
97 lines (76 loc) · 1.41 KB
/
mystyle.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
body {
height: 100vh;
width: 100vw;
margin: 0;
padding: 0;
overflow: hidden;
display: flex;
flex-direction: column;
}
#header {
overflow:hidden;
display: flex;
flex-grow: 0;
height: fit-content;
background-color: #8e7b54;
justify-content: space-between;
column-gap: 20px;
border-bottom-style: solid;
border-width: 2px;
border-image: radial-gradient(rgb(0, 0, 0), rgb(136, 121, 88)) 1;
}
#name {
font-size: 24px;
padding: 5px;
color: #2f210a;
}
#fans {
justify-content: flex-end;
flex-direction: row;
display: flex;
}
.fan {
user-select: none;
cursor: pointer;
font-size: 24px;
padding: 5px;
color: #2f210a;
}
#dropdown {
width: 60px;
}
#main {
flex-grow: 1;
overflow: scroll;
border: 0;
background: rgb(168,149,109);
background: linear-gradient(180deg, rgba(168,149,109,1) 0%, rgba(194,178,146,1) 50%, rgba(194,210,198,1) 100%);
}
#footer {
overflow:hidden;
height: fit-content;
background-color: #d1ddd4;
justify-content: space-between;
align-items: center;
border-top-style: solid;
border-width: 2px;
border-image: radial-gradient(rgb(0, 0, 0), rgb(179, 180, 179)) 1;
}
.in_the_foot {
padding: 5px;
}
.top_level{
margin: 0;
padding: 0;
display: flex;
width: 100%;
}
#selected {
color: #593e12;
background: rgb(194,210,198);
background: radial-gradient(closest-side, rgba(194,210,198,1) 0%, rgba(168,149,109,1) 100%);
}
ul{
margin-bottom: 0;
padding-bottom: 0;
}