-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle1.css
77 lines (73 loc) · 1.38 KB
/
style1.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
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
77
*{
margin:0;
padding:0;
box-sizing: boreder-box;
font-family: comic sans ms;
}
body{
width: 100%;
background-color: aquamarine;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.box{
width: 430px;
background-color: whitesmoke;
border-radius: 10px;
}
form{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 10px auto;
font-size: 24px;
}
.w1{
margin: 10px auto;
}
input{
width: 300px;
height: 30px;
padding-top: 1px;
padding-bottom: 1px;
font-size: 20px;
border-radius: 10px;
text-align: center;
}
button{
border-radius: 20%;
border: none;
cursor: pointer;
transition: transform 0.1s ease-in-out;
border: none;
box-shadow: 0 5px aquamarine;
display: inline-block;
outline: none;
font-size: 22px;
}
button:hover{
transform: scale(1.2, 1.2);
background-color: white;
}
button:active{
background-color: rgb(69, 209, 227);
box-sizing: 0 5px gray;
transform: translateY(2px);
}
#button{
width: 100px;
height: 50px;
}
.player{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 15px;
}
h1{
color: rgba(6, 241, 162, 0.899);
}