-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (50 loc) · 871 Bytes
/
style.css
File metadata and controls
57 lines (50 loc) · 871 Bytes
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
body {
margin: 0;
font-family: Arial, sans-serif;
background: #0d1117;
color: #c9d1d9;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
flex-direction: column;
}
.container {
width: 90%;
max-width: 600px;
text-align: center;
}
input {
padding: 10px;
width: 70%;
margin: 10px 0;
font-size: 16px;
border-radius: 5px;
border: none;
}
button {
padding: 10px 20px;
font-size: 16px;
background: #238636;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.profile-card {
margin-top: 20px;
padding: 20px;
background: #161b22;
border-radius: 10px;
text-align: left;
}
.profile-card img {
width: 100px;
border-radius: 50%;
}
.profile-card h2 {
margin: 10px 0 5px;
}
.profile-card p {
margin: 5px 0;
}