-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbutton.css
More file actions
55 lines (53 loc) · 1.13 KB
/
button.css
File metadata and controls
55 lines (53 loc) · 1.13 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
.btn {
height: 1.5vw;
font-family: Ubuntu;
font-weight:bold;
margin-bottom: 2em;
padding-top:1vw;
padding-bottom:1vw;
padding-left:1.5vw;
padding-right:1.5vw;
background: white;
box-shadow: 3px 4px 0px #847DFF;
border-radius: 5px;
display:inline-block;
margin-top: 2vw;
width:15vw;
cursor: pointer;
text-align: center;
text-decoration: none;
}
.btn:hover{
transition-property: all;
transition-duration: .05s;
transition-timing-function: ease-in;
margin-left:5px;
margin-top:calc(2vw + 4px);
margin-bottom:calc(2em - 4px);
box-shadow: 0px 0px 0px #847DFF;
}
.btn span{
font-size: 1.2vw;
line-height: 1.5vw;
align-items: center;
text-align: center;
vertical-align:top;
color: #20124D;
}
@media screen and (max-width: 1000px){
.btn span{
font-size:20px;
line-height: 27px;
vertical-align: unset ;
}
.btn{
height:auto;
width:auto;
cursor: pointer;
margin-bottom: 2em;
padding-top:1.8vh;
padding-bottom:1.8vh;
padding-left:4vw;
padding-right:4vw;
}
}