-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (79 loc) 路 1.62 KB
/
Copy pathstyle.css
File metadata and controls
94 lines (79 loc) 路 1.62 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap');
*{
box-sizing: border-box;
}
body{
background-color: #2E2A68;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: "Poppins", "sans-serif";
margin: 0;
min-height: 100vh;
}
input{
background-color: #342f79;
border-radius: 10px;
color: #fff;
border: none;
box-shadow: 0 5px 10px rgba(154,160,185,.05), 0 15px 40px rgba(0, 0, 0, 0.1);
font-family: inherit;
font-size: 1rem;
margin-bottom: 2rem;
padding: 1rem;
}
.input::placeholder{
color: #bbb;
}
.input:focus{
outline: none;
}
.card{
background-color: #342f79;
display: flex;
border-radius: 20px;
box-shadow: 0 5px 10px rgba(154,160,185,.05), 0 15px 40px rgba(0, 0, 0, 0.1);
padding: 3rem;
max-width: 800px;
}
.avatar{
border: 10px solid #2E2A68;
border-radius: 50%;
height: 150px;
width: 150px;
}
.user-info{
margin-left: 2rem;
color: #eee;
}
.user-info h2{
margin-top: 0;
}
.user-info ul{
display: flex;
justify-content: space-between;
list-style-type: none;
padding: 0;
max-width: 500px;
}
.user-info ul li{
display: flex;
align-items: center;
}
.user-info ul li strong{
font-size: 0.9rem;
margin-left: 0.5rem;
margin-right: 0.5rem;
}
.repo {
background-color: #2a2a72;
border-radius: 5px;
display: inline-block;
color: white;
font-size: 0.7rem;
padding: 0.25rem 0.5rem;
margin-right: 0.5rem;
margin-bottom: 0.5rem;
text-decoration: none;
}