-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle2.css
More file actions
76 lines (69 loc) · 1.07 KB
/
style2.css
File metadata and controls
76 lines (69 loc) · 1.07 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
body
{
background-color: #EEEEEE;
font-family: 'Segoe UI',sans-serif;
margin: 0px;
}
.btn, .f_btn
{
font-family: helvetica;
color: #FFFFFF;
display: inline-block;
margin:3px;
border-radius: 2px;
cursor: pointer;
transition: all .2s;
}
.btn.s,.f_btn.s
{
padding: 8px 16px;
font-size: 15px;
}
.btn.m,.f_btn.m
{
padding: 12px 24px;
font-size: 18px;
}
.btn.l,.f_btn.l
{
padding: 20px 32px;
font-size: 27px;
}
.f_btn.r
{
background-color: hsla(0, 100%, 46%, 1);
}
.f_btn.g
{
background-color: hsla(152, 100%, 38%, 1);
}
.f_btn.b
{
background-color: hsla(204, 100%, 38%, 1);
}
.f_btn
{
transform: translateY(-3px);
}
.f_btn.r{
box-shadow: 0px 3px 0px hsla(0, 100%, 38%, 1);
}
.f_btn.g{
box-shadow: 0px 3px 0px hsla(152, 100%, 30%, 1);
}
.f_btn.b{
box-shadow: 0px 3px 0px hsla(204, 100%, 30%, 1);
}
.f_btn.r:active{
box-shadow: 0px 0px 0px hsla(0, 100%, 38%, 1);
}
.f_btn.g:active{
box-shadow: 0px 0px 0px hsla(152, 100%, 30%, 1);
}
.f_btn.b:active{
box-shadow: 0px 0px 0px hsla(204, 100%, 30%, 1);
}
.f_btn:active
{
transform: translateY(0);
}