-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (111 loc) · 1.63 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
*
{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body
{
background-color: #121221 ;
font-family: "Open Sans", sans-serif ;
}
.container
{
max-height: 1200px;
margin: 0;
}
.header-content
{
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px;
height: 60px;
}
.header-logo
{
font-size: 32px;
text-decoration: none;
color: white;
}
.images
{
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.image
{
margin: 10px;
position: relative;
}
.image__cover-inner
{
position: relative;
height: 480px;
}
.image__cover
{
max-height: 100%;
height: 100%;
}
.image__cover--darkened
{
background-color: #000000;
opacity: 0.1;
position: absolute;
top: 0;
left: 0;
right: 0;
max-width: 100%;
height: 100%;
z-index: 1;
}
.image__cover--darkened:hover
{
background-color: grey;
cursor: pointer;
}
.image__info
{
padding: 10px 0px;
}
.image__artist
{
font-size: 16px;
color: #ffffff;
}
.image__source_url
{
font-size: 14px;
color: #aaddaa;
}
.btn {
padding: 0;
background-color: transparent;
border: none;
outline: none;
-webkit-tap-highlight-color: transparent;
box-shadow: none;
cursor: pointer;
margin: 5px 10px;
padding: 10px 15px;
border-radius: 1px;
font-size: 12px;
line-height: 15px;
text-transform: uppercase;
color: white;
background: #315efb;
transition: 0.3s;
}
.btn:hover {
box-shadow: 0px 2px 8px 2px rgba(141, 150, 178, .3);
transform: scale(1.05);
}
.btn
{
padding: 8px;
background-color: white;
color: black;
border: 2px solid
}