-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
78 lines (68 loc) · 1.3 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
* {
margin: 0;
padding: 0; }
body {
margin: 0;
padding: 0;
background-color: #26C6DA;
font-family: "Roboto" sans-serif; }
#flex {
position: absolute;
width: 100%;
height: 100%;
display: flex;
flex-flow: column;
justify-content: center;
align-items: center; }
.card {
position: relative;
width: 350px;
height: 310px;
background-color: white;
margin: 15px;
box-shadow: 0px 5px 8px #516161; }
.card img {
width: 50%;
height: auto; }
.header {
position: relative;
height: 70px;
width: 100%;
background-color: #00B8D4; }
.header h1 {
position: absolute;
bottom: 5px;
left: 10px;
color: white; }
button, .button2 {
position: absolute;
display: block;
width: 10em;
height: 3em;
border: none;
outline: none;
letter-spacing: .2em;
font-weight: bold;
background: #dfdfdf;
cursor: pointer;
overflow: hidden;
user-select: none;
border-radius: 4px;
bottom: 15px;
right: 15px; }
.button2 {
background: white;
color: #2196F3; }
.ripple {
position: absolute;
background: rgba(0, 0, 0, 0.15);
border-radius: 100%;
transform: scale(0);
pointer-events: none; }
.ripple.show {
animation: ripple .75s ease-out; }
@keyframes ripple {
to {
transform: scale(2);
opacity: 0; } }
/*# sourceMappingURL=style.css.map */