-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
94 lines (94 loc) · 1.89 KB
/
index.css
File metadata and controls
94 lines (94 loc) · 1.89 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
:root{
--darkblue: #1F2937;
--white-font: #FFFFFF;
--green-font: #4ADF86;
--green-button: #10B981;
--green-text-area: #55F991;
--gray-font: #D5D4D8;
--blue-border: #2F3E53;
--blue-boxing: #273549;
--pink-hover: #d4309e;
}
body{
margin: 0;
padding: 0;
box-sizing: border-box;
max-height: 100vh;
background-color: var(--darkblue);
}
.container{
height: 550px;
width: 650px;
margin: 20px auto;
}
header{
padding: 40px 50px;
border-bottom: 1px solid var(--blue-border);
}
h1{
font-size: 45px;
font-family: 'karla', sans-serif;
font-weight: 800;
line-height: 40px;
line-height: 20px;
}
.top{
color: var(--white-font);
}
.mid{
color:var(--green-font);
}
h4{
font-family: 'Inter', sans-serif;
font-size: 20px;
font-weight: 200;
line-height: 30px;
color: var(--gray-font);
}
button{
margin-top: 40px;
display: flex;
justify-content: center;
align-items: center;
gap: 12px;
padding: 9px 17px 9px 15px;
border-radius: 6px;
background-color: var(--green-button);
color: var(--white-font);
border-style: none;
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
font-family: 'Inter', sans-serif;
font-size: 15px;
}
button:hover{
background-color: var(--pink-hover);
}
.material-symbols-outlined{
font-weight: 700px;
}
main{
padding: 20px;
display: flex;
align-items: center;
justify-content: space-around;
}
p{
margin: 30px 10px;
height: 50px;
width: 280px;
background-color: var(--blue-boxing);
border-radius: 6px;
color: var(--green-text-area);
display: flex;
justify-content: center;
align-items: center;
text-align: center;
font-family: 'Inter', sans-serif;
font-weight: 500;
}
.credits{
text-align: center;
font-family: 'Inter', sans-serif;
color: var(--green-button);
font-size: 10px;
}