-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.css
61 lines (46 loc) · 800 Bytes
/
App.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
body{
background-color: rgb(4, 4, 74);
}
.app{
border: 2px solid lightseagreen;
border-radius: 25px;
width: 400px;
height: 350px;
margin: auto;
position: absolute;
top: 30%;
left: 35%;
color: white;
/* color: black; */
padding: 25px;
/* background-color: rgb(4, 4, 74); */
box-shadow: 5px 10px lightseagreen;
}
h1{
text-align: center;
}
.lab1{
text-align: center;
margin-top: 25px;
font-size: 24px;
}
.center{
text-align: center;
margin-top: 20px;
}
.btn{
border: 2px solid lightseagreen;
padding: 10px 25px;
border-radius: 10px;
font-size: 16px;
}
.btn:hover{
background-color: lightseagreen;
color: white;
transition: 0.5s;
}
input{
border: 2px solid lightseagreen;
padding: 5px 25px;
border-radius: 10px;
}