forked from wojak-1234/TermProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmoodpickerstyle.css
More file actions
153 lines (140 loc) · 2.78 KB
/
moodpickerstyle.css
File metadata and controls
153 lines (140 loc) · 2.78 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
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
145
146
147
148
149
150
151
152
153
@font-face {
font-family: 'lightfont';
src: url('font/AntipastoPro-Extralight_trial.ttf') format('ttf');
font-weight: normal;
font-style: normal;
}
/* 그라데이션 배경에 관련된 부분입니다.*/
canvas
{
top: 0;
left: 0;
position: fixed;
z-index: 0;
pointer-events: none;
}
/*night day 표시해주는 indicator 부분입니다.*/
indicator{
position:absolute;
z-index: 2;
}
/* 화면 상에 Choose your mood 라고 입력된 부분의 텍스트 상자입니다.*/
txtcontainer{
font-weight: bold;
color: white;
position: relative;
bottom: 10px;
left: 10px;
font-size: 20px;
}
/*슬라이더를 커스터마이징 하는 코드입니다.*/
input#selector {
position: relative;
-webkit-appearance:none;
width:300px;
height:10px;
border-radius:15px;
background: linear-gradient(to right, #222831, #393E46, #948979, #DFD0B8);
outline:none;
overflow:hidden;
}
/*슬라이더를 커스터마이징 하는 코드입니다.*/
input#selector::-webkit-slider-thumb {
-webkit-appearance:none;
width:10px;
height:10px;
background: white;
border-radius:2px;
box-shadow:-350px 0px 0px 340px #f5f5f5;
cursor:pointer;
}
/*슬라이더와 텍스트상자를 포함하는 큰 검은 상자입니다.*/
#slidercontainer{
top: 50%;
left: 50%;
transform: translate(-50%, -50%) translateY(-50px);
box-shadow: 0px 2px 0px #ECDFCC;
width : 400px;
position : relative;
z-index: 100;
background-color: black;
border-radius: 5px;
}
/* how do you like your music? */
#textbox{
letter-spacing: 1px;
font-family: 'lightfont', sans-serif;
display: inline;
position: relative;
z-index: inherit;
color : white;
font-weight: 200;
text-shadow: 0px 2px 0px #948979;
}
/*Vibe 를 설명해주는 textbox*/
#maintext{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) translateY(-150px);
z-index: 2;
color: white;
font-weight: 200;
text-shadow: 0px 4px 0px grey ;
font-size: 35px;
}
#submitbutton{
top: 50%;
left: 50%;
transform: translate(-50%, -50%) translateY(90px);
position: absolute;
z-index: 2;
width: 100px;
height: 50px;
border-radius: 10px;
}
#submitbutton.onclick{
background-color: #393E46;
}
.fading-text {
transition: opacity 0.5s ease;
}
#menubar{
top:0px;
left:0px;
position: absolute;
z-index: 2;
width: 100vw;
height: 50px;
background-color: black;
opacity: 80%;
box-shadow: 0px 1px 10px white;
color: white;
}
#menu a{
display : block;
position : relative;
display: inline;
text-decoration: none;
top : 12px;
margin-left : 150px;
font-weight: 200;
padding-left: 10px;
padding-right: 10px;
color : white;
text-shadow: 1px 1px 0px gray;
}
#bottomarea{
color : gray;
text-align: center;
font-weight: 100;
font-size: 20px;
position: absolute;
z-index: 2;
left:0px;
width: 100vw;
top:90%;
height: 78.5px;
background-color: black;
opacity: 75%;
}