-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
82 lines (77 loc) · 1.58 KB
/
index.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
80
81
82
@import url('https://fonts.googleapis.com/css2?family=Karla&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
body {
background-color: #1c1c1c;
font-family: 'Inter', sans-serif;
margin: 0;
padding: 0;
}
.container {
position: fixed;
background-color: #1f2937;
width: 700px;
height: 500px;
top: 50%;
left: 50%;
margin-top: -22em;
margin-left: -21em;
border: 5px solid #4adf86;
border-radius: 10px;
padding: 5% 2.5%;
}
.container .heading h1 {
color: white;
font-family: 'Karla', sans-serif;
font-weight: 800;
font-size: 60px;
line-height: 50px;
}
.container .heading p {
color: white;
font-size: 30px;
font-weight: 400;
line-height: 20px;
}
.container .buttons {
display: flex;
justify-content: space-around;
}
.container button {
background-color: #10b981;
color: white;
font-family: 'Inter', sans-serif;
font-size: 20px;
font-weight: 500;
line-height: 20px;
width: 310px;
height: 50px;
margin-top: 20px;
margin-bottom: 10px;
border: none;
border-radius: 5px;
}
.container button:hover {
cursor: pointer;
background-color: #4adf86;
transition: 0.5s;
color: rgb(0, 0, 0);
}
.container .pwdSpace {
display: flex;
justify-content: space-around;
}
.container .pwdSpace button {
background-color: #273549;
width: 340px;
height: 50px;
margin-top: 80px;
border: 1px solid rgba(255, 255, 255, 0.252);
border-radius: 5px;
text-align: center;
color: #4adf86;
font-family: 'Inter', sans-serif;
font-size: 20px;
font-weight: 500;
line-height: 20px;
cursor: default;
}