-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
77 lines (68 loc) · 1.5 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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Karla:wght@800&display=swap');
body {
margin: 0;
background-color: #1C1C1C;
margin: 20px;
}
h1 {
color: var(--white, #FFF);
font-family: 'Karla', sans-serif;
font-size: 40px;
font-style: normal;
font-weight: 800;
line-height: 40px; /* 100% */
letter-spacing: -1px;
}
span {
color: #4ADF86;
}
h2 {
color: var(--medium-grey, #D5D4D8);
font-family: 'Inter', sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 140% */
}
button {
display: inline-flex;
padding: 9px 17px 9px 15px;
justify-content: center;
align-items: center;
border-radius: 6px;
background: #10B981;
border-color: #10B981;
/* shadow/sm */
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
color: var(--white, #FFF);
/* text-base/leading-6/font-medium */
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 24px; /* 150% */
}
.pass-result{
border-radius: 6px;
background: #273549;
width: 211px;
height: 39px;
flex-shrink: 0;
margin-top: 35px;
}
.container {
display: flex;
justify-content:space-between;
max-width: 500px;
}
.pass-result {
color: #55F991;
text-align: center;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
display: flex;
align-items: center;
justify-content: center
}