forked from adeora7/hacktoberfest_progress
-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.css
121 lines (101 loc) · 1.44 KB
/
popup.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
body{
min-width: 300px;
min-height: 400px;
background-color: #29328f;
color: white;
}
#header{
width: 100%;
font-size: 25px;
text-align: center;
height: 20%;
}
#header > a >img{
width: 300px;
}
#main{
margin-top: 10px;
}
.eachSavedAccount{
margin: 5px;
font-weight: 900;
cursor: pointer;
}
.eachSavedAccount:hover{
text-decoration: underline;
}
.rounded{
border-radius: 15px;
cursor: pointer;
margin-right: 5px;
height: 30px;
width: 30px;
}
.button{
height: 40px;
width: 170px;
background-color: #fe615f;
border: 0px;
color: white;
font-size: 16px;
}
#mostRecentUsers{
margin-bottom: 10px;
}
#newAccount{
min-height: 140px;
}
#avatar{
height: 45px;
padding: 5px;
width: 45px;
}
#githubHandle{
height: 30px;
width: 160px;
padding: 5px;
font-size: 16px;
text-align: center;
}
#result{
margin-top: 10px;
}
#resultHandle{
text-decoration: underline;
margin-bottom: 10px;
font-size: 16px;
}
#prCompleteCount{
font-size: 20px;
font-weight: 700;
margin-bottom: 10px;
}
#message{
font-size: 18px;
text-align: center;
}
#prList ul{
padding-left: 0;
}
#prList li {
list-style: none;
}
#prList li a{
color: #29328f;
}
#overlay{
background-color: rgba(0, 0, 0, 0.5);
position: absolute;
top:0;
left:0;
right:0;
bottom:0;
visibility: collapse;
}
#dialog{
border: 0px;
text-align: center;
}
#show{
visibility: collapse;
}