-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
115 lines (88 loc) · 1.59 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
@import url('https://fonts.googleapis.com/css2?family=Cabin&display=swap');
* {
box-sizing: border-box;
}
body {
padding: 50px;
background: linear-gradient(90deg,#78E3FD,#ee6c80);
background-attachment: fixed;
font-family: 'Cabin', san-serif;
display: flex;
flex-direction: column;
margin: 0;
align-items: center;
/* justify-content: center; */
height: 100vh;
}
.btn {
border: none;
width: 45px;
background-color: #1487a3;
border-radius: 5px;
padding: 10px;
color: white;
font-size: 1.5rem;
box-shadow: 2px 4px 4px rgba(0,0,0,0.1);
cursor: pointer;
}
#login {
color: #161925;
display: flex;
justify-content: center;
justify-items: center;
align-items: center;
}
#emoji {
color: yellow;
}
#loggedin {
display: flex;
align-items: center;
flex-direction: column;
text-align: center;
}
.wrapper {
padding: 30px;
border: 2px solid black;
border-radius: 30px;
margin-top: 40px;
width: 370px;
}
#albumArt {
border-radius: 20px;
}
#login-button {
width: 70px;
height: 70px;
font-size: 2.5rem;
display: block;
position: relative;
left: 35%;
}
#logout-button {
position: absolute;
right: 20px;
top : 20px;
}
.btn:hover {
background-color: #664ae4;
transform: scale(98%);
}
#getCurrent {
width: 400px;
border-radius: 40px;
height: 60px;
top: 30%;
}
#content {
margin: 10px;
}
.demo {
padding: 20px;
font-size: 25px;
}
@media(max-width: 600px) {
#getCurrent{
width: 70vw;
}
}