-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSlide-Pullze.css
More file actions
127 lines (114 loc) · 2 KB
/
Slide-Pullze.css
File metadata and controls
127 lines (114 loc) · 2 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
html {
display: flex;
justify-content: center;
align-items: center;
}
body {
font-family: "Open Sans", "Source Sans Pro", sans-serif;
text-align: center;
background: #0f9d58;
color: #837d7a;
width: 400px;
}
.btn {
margin: 1rem;
padding: 0.6rem 1.1rem;
outline: none;
border: none;
border-radius: 0.5rem;
background: #fe4365;
box-shadow: 0 0 0 -2px #cff09e, 0 0 0 -1px #fe4365;
color: #fff;
text-decoration: none;
font-size: 2rem;
transition: box-shadow 0.3s;
}
.btn:hover,
.btn:focus {
box-shadow: 0 0 0 2px #cff09e, 0 0 0 4px #ff0364;
animation: gelatine 0.5s 1;
}
.btn-secondary {
background: #c8c8a9;
box-shadow: 0 0 0 -2px #cff09e, 0 0 0 -1px #c8c8a9;
}
.btn-secondary:hover {
box-shadow: 0 0 0 2px #cff09e, 0 0 0 4px #bebe99;
}
.btn:active,
.btn-secondary:active {
background: #4ecdc4;
box-shadow: 0 0 0 2px #cff09e, 0 0 0 4px #3ac7bd;
transition-duration: 0s;
}
@keyframes gelatine {
from,
to {
transform: scale(1, 1);
}
25% {
transform: scale(0.9, 1.1);
}
50% {
transform: scale(1.1, 0.9);
}
75% {
transform: scale(0.95, 1.05);
}
from,
to {
transform: scale(1, 1);
}
25% {
transform: scale(0.9, 1.1);
}
50% {
transform: scale(1.1, 0.9);
}
75% {
transform: scale(0.95, 1.05);
}
}
#container {
background-color: #ffffff;
border: 1px solid;
border-radius: 15px;
margin: 20px;
}
#box {
height: 252px;
width: 252px;
border: 3px solid #837d7a;
border-radius: 5px;
background: #ffffff;
margin: auto;
}
.numbers {
background-color: #ffffff;
text-align: center;
height: 80px;
width: 80px;
border: 1px solid white;
border-radius: 5px;
float: left;
margin: 1px;
font-size: 60px;
color: #837d7a;
/* font-weight: bold; */
}
a:link,
a:visited {
color: #837d7a;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
}
a:hover,
a:active {
background-color: #837d7a;
color: rgb(114, 196, 219);
}
header footer {
background: #0f9d58;
}