-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (44 loc) · 920 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
50
51
@import url('https://fonts.googleapis.com/css2?family=Baloo+Tamma+2:wght@700&display=swap');
*{
color: royalblue;
margin: 0;
padding: 0;
}
body{
overflow: hidden;
}
input{
/* display: flex; */
display: block;
padding: 14px;
margin: 70px auto;
width: 40%;
border-radius: 9px;
border: 2px solid black;
font-family: 'Baloo Tamma 2', cursive;
margin-top: 99px;
}
body::before{
content: "";
height: 110%;
width: 100%;
top: 0px;
position: absolute;
background: url("pic3.jfif") no-repeat center center/cover;
z-index: -1;
/* overflow: hidden; */
}
.btn{
display: block;
margin: 3px auto;
padding: 6px 18px;
border: 2px solid black;
background: aquamarine;
font-family: 'Baloo Tamma 2', cursive;
border-radius: 12px;
cursor: pointer;
font-size: 17px;
}
.btn:hover{
background: rgb(0, 248, 207);
}