-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.css
More file actions
113 lines (94 loc) · 1.72 KB
/
profile.css
File metadata and controls
113 lines (94 loc) · 1.72 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
#achievements {
margin: 0;
padding: 0;
padding: 5px;
}
#achievements li {
margin-left: 2px;
margin-right: 2px;
margin: 2px;
list-style-type: none;
display: inline-block;
}
#achievementDisabler {
width: 100%;
height: 100%;
position: absolute;
left: 0%;
top: 0%;
}
#achievementImage {
width: 20vh;
height: 20vh;
}
#achievementPopup {
position: absolute;
width: calc(100% - 20vh - 40ch);
height: 20%;
left: calc(20vh + 20ch);
top: 40%;
}
/*Mobile formatting*/
@media (max-width: 450px) {
#achievementPopup {
position: absolute;
width:96%;
height: 20%;
left: 2%;
top: 40%;
}
}
.an {
float: left;
width: calc(100% - 20vh);
height: 10vh;
/*background-color: cyan;*/
}
.ai {
float: right;
width: 20vh;
/*background-color: yellow;*/
}
.ad {
top: 10vh;
width: calc(100% - 20vh);
float: left;
/*background-color: magenta;*/
}
#inventory {
margin: 0;
padding: 0;
padding: 5px;
}
#inventory li {
margin-left: 2px;
margin-right: 2px;
margin: 2px;
list-style-type: none;
display: inline-block;
}
.profile {
float: right;
position: absolute;
text-align: right;
top:0%;
right: 0%;
}
.profileScroll {
height: calc(100vh - 20vw);
overflow-y:scroll;
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
@media (max-width: 450px) {
.profileScroll {
height: calc(100% - 30vw);
}
}
.profileScroll::-webkit-scrollbar {
display: none;
}
.profileBack{
background: rgb(183,171,207);
background: linear-gradient(180deg, rgba(183,171,207,1) 0%, rgba(157,116,148,1) 100%);
}