-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
159 lines (141 loc) · 2.75 KB
/
Copy pathstyles.css
File metadata and controls
159 lines (141 loc) · 2.75 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
154
155
156
157
158
159
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");
/*https://codepen.io/kristen17/pen/xbbZebL*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,body {
margin: 0;
padding: 0;
font-family: "Poppins", sans-serif;
font-weight: 400;
position: relative;
overflow: hidden;
display: grid;
border-color: #151419;
width: 25rem;
}
a {
text-decoration: none;
display: inline-block;
}
.card {
position: relative;
z-index: 555;
min-height: 10rem;
min-width: 25rem;
width: 100%;
display: grid;
text-align: center;
position: relative;
box-shadow: 0.063em 0.75em 1.563em rgb(0 0 0 / 78%);
}
.card-header {
position: absolute;
top: 0;
right: 0;
width: 100%;
display: flex;
align-items: center;
place-items: center;
justify-content: flex-end;
padding: 1.8em 1.8em 0em 1em;
}
.card-header .close {
color: #d9d9d9;
width: 1.5rem;
cursor: pointer;
}
.card-body {
width: 100%;
padding: 1em 2em 4em 5em;
text-align: left;
}
.card-body h3 {
text-align: left;
color: #fff;
font-size: 1.2rem;
letter-spacing: 0.035em;
margin-top: 0em;
margin-bottom: 0.5em;
font-weight: 600;
}
.card-body p {
text-align: left;
color: #cccccc;
font-size: 1rem;
letter-spacing: 0.031rem;
margin-bottom: 1em;
}
.card .btn-second {
margin-left: 2em;
}
.card.blue {
background: radial-gradient(
ellipse at right top,
#1DB954 0%,
#222821 65%,
#151419 100%
);
transition:
background 0.9s ease-in-out;
}
.card.blue:hover {
background: radial-gradient(
ellipse at right top,
#1DB954 0%,
#222821 75%,
#151419 100%
);
}
.card.blue .icon {
color: #5a81ff;
}
.card.blue:before {
background: linear-gradient(
45deg,
#232228,
#232228,
#232228,
#232228,
#1DB954
)
border-box;
}
.card.blue .btn-first {
margin-top: 1.5em;
margin-bottom: 1em;
}
.card.blue .btn-first:hover {
background: #1DB954;
}
button {
background: #333e35;
color: #fff;
border-radius: 0.25em;
display: inline-block;
padding: 0.5em 1.5em;
border: none;
cursor: pointer;
font-size: 0.75rem;
font-weight: 400;
font-family: "Poppins", sans-serif;
margin-right: 1em;
}
button:hover {
background: #1DB954;
font-weight: 500;
transition: background 0.3s ease-in-out;
}
.icon {
width: 2.5rem;
margin-bottom: 0em;
margin-top: 1em;
margin-left: 1em;
}
.status {
color: #cccccc;;
font-size: 0.875rem;
margin-top: 1em;
}