-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstyle.css
122 lines (108 loc) · 2.05 KB
/
style.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
}
body {
background-color: #2a2a72;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
}
.form {
width: 100%;
max-width: 700px;
height: 100%;
max-height: 60px;
}
input {
width: 100%;
height: 100%;
padding: 25px;
border: none;
border-radius: 10px;
background-color: #4c2885;
font-size: 20px;
color: white;
}
input::placeholder {
color: rgb(240, 206, 206);
}
input:focus {
outline: none;
}
.main {
display: flex;
align-items: center;
overflow: hidden;
flex-wrap: wrap;
padding: 0 0 0 45px;
margin-top: 30px;
width: 765px;
background-color: #4c2885;
border-radius: 20px;
}
.pf_img {
height: 150px;
width: 150px;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
border-radius: 50%;
border: 6px solid rgb(130, 146, 238);
}
.content {
display: flex;
flex-direction: column;
align-items: left;
justify-content: center;
overflow: hidden;
margin: 10px 35px;
color: white;
}
.error {
margin: auto;
color: white;
}
.name {
font-size: 25px;
padding: 15px 0 15px 0;
font-weight: bold;
}
.info {
font-size: 18px;
padding: 15px 0 15px 0;
max-width: 450px;
}
.social {
font-size: 18px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: 15px 0;
max-width: 350px;
}
.repository {
font-size: 12px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: left;
max-width: 500px;
flex-wrap: wrap;
}
.repository a {
color: white;
text-decoration: none;
background-color: #2a2a72;
margin: 0 10px 10px 0;
padding: 5px;
border: none;
border-radius: 5px;
}