-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
122 lines (107 loc) · 2.25 KB
/
main.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@400;700&display=swap");
body {
background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 18%, rgba(0, 212, 255, 1) 100%);
;
display: flex;
justify-content: center;
align-items: center;
min-height: 10vh;
flex-direction: column;
font-family: 'Poppins', sans-serif;
}
.title {
color: white;
}
input {
padding: 0.52rem 1.2rem;
font-size: 1.5rem;
border-radius: 20px;
border: 2px solid rgb(2, 0, 36);
background: transparent;
color: rgb(255, 255, 255);
outline: none;
font-family: inherit;
transition: all 0.3s;
}
input:focus {
box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 1);
background-color: #df5493;
border-color: #df5493;
}
::placeholder {
color: rgb(255, 255, 255);
}
.card {
background-color: #fc5c9c;
display: flex;
align-items: center;
justify-content: space-between;
width: 800px;
min-height: 100px;
color: white;
border-radius: 0.5rem;
padding: 1rem;
margin: 1rem;
box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 1);
}
.avatar {
width: 200px;
border-radius: 50%;
box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 1);
margin-right: 1rem;
}
ul {
margin: 0%;
padding: 0%;
width: 100%;
list-style: none;
display: flex;
justify-content: space-between;
}
li {
display: grid;
grid-template-columns: max-content max-content max-content;
align-items: center;
justify-content: space-around;
min-width: 70px;
border: 5px solid;
border-radius: 1rem;
padding: 0.3rem;
background-color: #fcefee;
color: black;
}
.heart {
color: rgb(255, 0, 0);
}
.eye {
color: rgb(97, 131, 5);
}
ion-icon {
font-size: 24px;
}
.repos {
width: 800px;
position: absolute;
text-align: center;
min-height: 100px;
overflow: auto;
background-color: rgb(10, 27, 27);
padding: 1rem;
border-radius: 20px;
margin: 1rem;
}
.repos h1 {
color: white;
}
.repo {
display: inline-block;
color: rgb(211, 210, 208);
text-decoration: none;
padding: 0.3rem;
background-color: rgba(0, 139, 139, 0.432);
margin: 0.5rem;
border-radius: 0.5rem;
}
.repo:hover {
color: rgb(172, 201, 255);
}