-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsec.css
More file actions
63 lines (58 loc) · 1.38 KB
/
sec.css
File metadata and controls
63 lines (58 loc) · 1.38 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
h1{
color: #53a267;
}
body{
background-color: #78ba79;
direction: rtl;
text-align: center;
}
div{
background:#ccf5d5;
width:90%;
height:550px;
max-width: 100%;
margin:auto;
padding:20px;
border: 4px solid #509f6c;
}
button{
align-items: center;
appearance: none;
background-color: #FCFCFD;
border-radius: 20px;
border-width: 0;
box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,rgba(45, 35, 66, 0.3) 0 7px 13px -3px,#D6D6E7 0 -3px 0 inset;
box-sizing: border-box;
color: #000000;
cursor: pointer;
display: inline-flex;
font-family: "Open Sans";
height: 30px;
justify-content: center;
line-height: 1;
list-style: none;
overflow: hidden;
padding-left: 10px;
padding-right: 10px;
position: relative;
text-align: center;
text-decoration: none;
transition: box-shadow .15s,transform .15s;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
white-space: nowrap;
will-change: box-shadow,transform;
font-size: 16px;
}
button:focus {
box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}
button:hover {
box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
transform: translateY(-2px);
}
button:active {
box-shadow: #D6D6E7 0 3px 7px inset;
transform: translateY(2px);
}