-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (47 loc) · 897 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
52
53
54
55
56
57
58
59
60
61
62
*{
background: #7030b1;
margin :0px;
box-sizing: border-box;
}
.content-center{
width: 100%;
max-width: 300px;
margin:auto;
padding:20px;
border-radius: 12px;
background-color: #7030b1;
}
.content-center .text-center{
text-align:center;
}
.content-center img{
width: 70%;
}
.content-center form{
margin:20px;
}
.content-center input,
.content-center button{
color:white;
width: 100%;
padding: 10px 5px;
background-color: rgba(28, 0, 59, 0.781);
border-style: none;
outline: none;
border-radius: 6px;
}
footer{
text-align: center;
}
.content-center button:hover{
cursor:pointer;
}
.content-center input{
border-bottom: #ad64f7;
margin-bottom: 5px;
border-bottom-width: 2px;
border-bottom-style: solid;
}
.content-center input:focus{
border-bottom-color: #a70da7;
}