-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
144 lines (130 loc) · 2.95 KB
/
style.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
*{
margin: 0;
padding: 0;
background: rgba(18, 18, 18, 1);
}
@font-face {
font-family: 'Gotham Screen Smart';
src: local('Gotham Screen Smart Book'), local('Gotham-Screen-Smart-Book'),
url('https://ValiantWind.github.io/Roblox-Avatar-Thumbnail-Viewer/fonts/GothamSSm-Book.woff2') format('woff2'),
url('https://ValiantWind.github.io/Roblox-Avatar-Thumbnail-Viewer/fonts/GothamSSm-Book.woff') format('woff'),
url('https://ValiantWind.github.io/Roblox-Avatar-Thumbnail-Viewer/fonts/GothamSSm-Book.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
.main{
width: 100%;
height: 50vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
h1{
color: white;
margin: 15px;
font-family: 'Gotham Screen Smart', sans-serif;
font-style: normal;
font-weight: 500;
line-height: 140%;
}
h2{
color: white;
margin: 15px;
font-family: 'Gotham Screen Smart', sans-serif;
font-style: normal;
font-weight: 500;
line-height: 140%;
}
input{
width: 300px;
height: 40px;
background: transparent;
border: none;
margin: 15px;
outline: none;
font-size: 1.2rem;
color: white;
padding: 0 10px;
font-family: 'Gotham Screen Smart', sans-serif;
}
button {
position: relative;
overflow: hidden;
transition: background 400ms;
color: #171717;
background-color: #2BB1FF;
padding: 1rem 2rem;
font-family: 'Gotham Screen Smart', Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;
font-size: 1.25rem;
outline: 0;
border: 0;
border-radius: 0.25rem;
box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3); /* black with 30% opacity */
cursor: pointer;
margin: 10px;
}
span.ripple {
position: absolute;
border-radius: 50%;
transform: scale(0);
animation: ripple 600ms linear;
background-color: rgba(255, 255, 255, 0.7);
}
@keyframes ripple {
to {
transform: scale(4);
opacity: 0;
}
}
button:hover{
text-decoration: none;
background-color: rgba(43, 177, 255, 0.8);
}
select{
font-family: 'Gotham Screen Smart', sans-serif;
background: transparent;
background-color: #171717;
color: white;
border: none;
box-sizing: content-box;
}
label{
color: white;
margin: 15px;
font-family: 'Gotham Screen Smart', sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 140%;
}
img{
margin: 15px;
}
#context-menu {
position: fixed;
z-index: 10000;
margin: 10px;
width: 150px;
background: #171717;
border-radius: 5px;
transform: scale(0);
transform-origin: top;
color: white
}
#context-menu.visible {
transform: scale(1);
transition: transform 200ms ease-in-out;
}
#context-menu .option {
padding: 8px 10px;
margin: 5px;
font-size: 15px;
font-family: 'Gotham Screen Smart', sans-serif;
color: white;
cursor: pointer;
border-radius: inherit;
}
#context-menu .option:hover {
background: #343434;
}