-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
66 lines (59 loc) · 1.25 KB
/
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
63
64
65
66
* {
padding:0;
margin:0;
font-family: system-ui;
}
body {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
header {
padding: 1rem;
font-weight: 500;
font-size: 1.2rem;
color: #673AB7;
box-shadow: 0px 0px 8px 0px #0000005c;
margin-bottom: 2rem;
width: -webkit-fill-available;
}
.main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 18rem;
height: 23rem;
box-shadow: 0px 0px 8px 0px #0000005c;
border-radius: 10px;
margin-top: 2rem;
}
.main input {
border: none;
border-bottom: 2px solid gray;
margin-bottom: 1rem;
outline: none;
font-size: 1.2rem;
text-align: center;
}
.main button {
border: 1px solid #673AB7;
padding: 0.5rem 1rem;
margin-top: 1rem;
border-radius: 10px;
color: #673AB7;
font-size: 1.1rem;
background-color: transparent;
transition: all 0.3s ease;
cursor: pointer;
outline: none;
}
.main button:hover{
box-shadow: 0px 2px 7px 0px #0000005c;
}
#placeHolder img {
border: 1px solid #3F51B5;
border-radius: 10px;
margin-bottom: 2rem;
}