-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
116 lines (99 loc) · 1.7 KB
/
Copy pathpopup.css
File metadata and controls
116 lines (99 loc) · 1.7 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
body {
background: #111;
padding: 10px;
width: 300px;
}
form {
display: flex;
margin-bottom: 20px;
padding: 10px;
}
form input {
border: 2px solid #555;
border-radius: 4px;
outline: none;
padding: 7px;
width: 100%;
transition: all .5s ease;
margin-right: 10px;
}
form input:focus {
border: 2px solid #111;
}
form button {
padding: 7px;
outline: none;
border: none;
border-radius: 4px;
background: #09528d;
color: #fff;
cursor: pointer;
transition: all .5s ease;
}
form button:hover, form button:focus {
opacity: 0.8;
}
.user {
display: flex;
}
.user .text-data {
text-align: right;
}
.user a.name {
font-size: 20px;
color: #eee;
}
.user p.loginName {
margin-top: 5px;
color: #eee;
opacity: 0.8;
}
.user img {
width: 50%;
border-radius: 50%;
cursor: pointer;
}
.repos {
display: flex;
flex-direction: column;
margin-top: 50px;
}
.repos h2 {
color: #fff;
font-size: 30px;
margin-bottom: 20px;
}
.repos .repo {
margin-bottom: 20px;
padding: 7px;
background: #222;
border-radius: 3px;
color: #fff;
cursor: pointer;
transition: all .5s ease;
}
.repos .repo:hover {
opacity: 0.8;
}
.repos .repo .small {
font-size: 10px;
}
.repos .repo h3 {
font-size: 25px;
font-weight: normal;
}
.repos .repo .description {
font-size: 15px;
margin-bottom: 5px;
margin-top: 7px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}