-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (63 loc) · 1.34 KB
/
style.css
File metadata and controls
73 lines (63 loc) · 1.34 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
body {
margin: 0;
padding: 0;
background-color: #333333;
display: flex;
justify-content: center;
align-items: center;
height: 50vw;
font-family: Arial, Helvetica, sans-serif;
color : #b1b1b1;
overflow: hidden;
}
.container {
border-radius: 7px;
padding: 10px;
-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.16);
box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.16);
}
.container .wrapper {
width: 170px;
flex-wrap: wrap;
padding: 10px;
display: flex;
justify-content: center;
align-items: center;
}
.container .wrapper .case {
height:30px;
width:30px;
background-color: rgb(68, 68, 68);
margin: 10px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.16);
transition: all ease .3s;
}
.case:hover {
transform: scale(1.1);
transition: all ease .3s;
cursor: pointer;
}
.footer {
display: flex;
justify-content: center;
flex-direction: column;
}
p {
color:#818181
}
button {
border-radius: 7px;
background-color: #e74a4a;
border: none;
outline: none;
padding: 10px;
color: #333333;
}
button:hover {
background-color: #ca3a3a;
cursor: pointer;
}