-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (86 loc) · 1.52 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
@keyframes myAnim {
0% {
animation-timing-function: ease-in;
opacity: 1;
transform: translateY(45px);
}
24% {
opacity: 1;
}
40% {
animation-timing-function: ease-in;
transform: translateY(24px);
}
65% {
animation-timing-function: ease-in;
transform: translateY(12px);
}
82% {
animation-timing-function: ease-in;
transform: translateY(6px);
}
93% {
animation-timing-function: ease-in;
transform: translateY(4px);
}
25%,
55%,
75%,
87% {
animation-timing-function: ease-out;
transform: translateY(0px);
}
100% {
animation-timing-function: ease-out;
opacity: 1;
transform: translateY(0px);
}
}
body {
background-color: #F2F2F2;
}
.box {
background-color: white;
}
div
{
border-radius: 0.3em;
}
button {
cursor: pointer;
}
.tab {
background-color: white;
border-radius: 0.5em 0.5em 0 0;
border: 1px solid black;
border-bottom: none;
padding: 0.5em;
bottom: -2px;
position: relative;
cursor: pointer;
}
.setting
{
margin: 0.5em;
align-items: center;
display: flex;
background-color: #F2F2F2;
padding: 0.5em;
}
.link {
background-color: #E2E2E2;
border-radius: 0.3em;
margin: 0.2em;
padding: 0.5em;
display: flex;
align-items: center;
box-shadow: 2px 2px 5px #929292;
}
.shadow {
//box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
//box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.shadowStrong {
box-shadow: #505050 0px 20px 30px -10px;
}