-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
79 lines (68 loc) · 1.29 KB
/
styles.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
78
79
body {
font-family: 'Overpass', sans-serif;
font-family: 'PT Serif', serif;
}
.main-body {
width: 400px;
height: 400px;
margin-left: auto;
margin-right: auto;
margin-top: 100px;
text-align: left;
padding-top: 30px;
padding-left: 30px;
border: 2px solid #3C4758;
border-radius: 8px;
background-color: #F3F4F6;
box-shadow: 1px 1px 8px #3C4758;
}
.main-header {
font-size: 40px;
color: #5B21B6;
}
.sub-header {
font-size: 20px;
color: #1F2937;
}
button {
font-size: 18px;
background-color: #5B21B6;
color: #F3F4F6;
padding: 10px;
border: none;
border-radius: 4px;
}
.thin-line {
width: 343px;
border: 1px solid #E5E7EB;
margin-top: 28px;
}
.input-field {
width: 350px;
display: flex;
justify-content: space-around;
margin-top: 20px;
}
.input-1,
.input-2 {
border: 2px solid #E5E7EB;
box-shadow: 1px 1px 8px #E5E7EB;
border-radius: 4px;
margin-top: 15px;
text-align: center;
width: 150px;
height: 30px;
background-color: #E5E7EB;
color: #5B21B6;
font-size: 17px;
padding: 5px;
cursor: pointer;
}
.input-1:hover {
background-color: #5B21B6;
color: whitesmoke;
}
.input-2:hover {
background-color: #5B21B6;
color: whitesmoke;
}