-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
49 lines (47 loc) · 824 Bytes
/
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
body{
width:100%;
overflow:hidden;
height:100vh;
}
.for{
height:60vh;
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
padding:40px;
padding-bottom:auto;
border:1px solid #00000030;
transition: 0.5s;
}
.for:hover{
box-shadow:4px 4px 5px #11111130,0px 0px 4px #11111130;
}
.hi{
margin:30px;
font-size:125%;
}
button{
display:block;
margin:auto;
margin-top:40px;
padding:5px;
font-size:90%;
border-radius:5px;
background:#bedefd;
transition:0.5s;
outline:none;
}
input{
height:25px;
padding-left:4px;
border:1px solid black;
}
button:hover{
background:#5f791497;
color:white;
box-shadow:3px 3px 5px #11111130,0px 0px 2px #11111130;
}
button:active{
transform:translate(0,8px);
}