-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (67 loc) · 1.29 KB
/
style.css
File metadata and controls
71 lines (67 loc) · 1.29 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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body{
background-color: rgb(177, 255, 187);
}
.container{
background-color: #a68ff9;
height: 350px;
width: 500px;
display: flex;
flex-direction: column;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
gap: 30px;
justify-items: center;
align-items: center;
border-radius: 30px;
box-shadow: 10px 10px 30px darkblue;
}
#enter{
height: 50px;
width: 300px;
border: none;
border-radius: 15px;
color: black;
font-size: 25px;
text-align: center;
outline: none;
}
/* #btn{
height: 40px;
width: 150px;
background-color: black;
color: #F8C471;
font-size: 20px;
border-radius: 10px;
} */
.btn
{
border: 5px solid rgb(177, 255, 187);
padding: 5px 20px;
color: orange;
font-size: 30px;
border-radius: 10px;
text-decoration: none;
}
.btn:hover{
color: white;
background-color: black;
box-shadow: 0px 10px 30px rgb(64, 63, 63);
transition: 1s;
}
#p1{
font-size: 30px;
color: black;
font-family: sans-serif;
}
#head{
text-align: center;
padding-top: 50px;
font-family: sans-serif;
}