-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
161 lines (142 loc) · 2.59 KB
/
app.css
File metadata and controls
161 lines (142 loc) · 2.59 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Helvetica, Palatino, Garamond, Arial;
}
span:hover {
cursor: pointer;
text-decoration: underline black solid;
}
.package-wrapper {
margin: 0% 10% 0% 10%;
border-left: 3px dashed black;
border-right: 3px dashed black;
padding: 10px 30px 0px 30px;
}
.package-list {
border: 3px solid black;
border-radius: 15px;
padding: 20px;
margin-top: 2%;
margin-bottom: 2%;
line-height: 1.4;
text-align: center;
display:flex;
flex-wrap: wrap;
justify-content: center;
}
.package-name {
font-size: 1.25em;
white-space: pre;
padding: 0px 8px 0px 8px;
}
#overlay {
position: fixed;
display: none;
width: 100%;
height: 100%;
top: auto;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: 2;
max-height: 100%;
overflow-y: auto;
}
#overlay-wrapper {
display: flex;
position: relative;
align-items: center;
justify-content: center;
flex-direction: column;
margin: 10% 15% 5% 15%;
background-color: white;
border: 3px solid black;
border-radius: 25px;
padding: 8px;
}
.close-button {
border: 1px solid red;
align-self: flex-end;
font-size: 3em;
position: absolute;
top: -20px;
right: -20px;
background-color: white;
border: 5px solid black;
height: 80px;
width: 80px;
text-align: center;
border-radius: 50%;
z-index: 1;
cursor: pointer;
user-select: none;
}
.overlay {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.name {
font-size: 3em;
border-bottom: 2px dashed black;
text-align: center;
padding: 10px 20px 6px 20px;
}
.summary {
font-size: 1.8em;
text-align: center;
padding: 20px 20px 0px 20px;
}
.description {
font-size: 1.2em;
text-align: center;
padding: 20px 40px 20px 40px;
font-style: italic;
}
/* dependencies */
.package-dependency-wrapper {
padding: 20px;
display: flex;
flex-direction: column;
}
.dependency-wrapper {
border-bottom: 1.5px solid black;
border-radius: 25px;
padding: 10px;
}
.package-dependency {
font-size: 1.2em;
padding: 5px 10px 5px 10px;
}
/* dependents */
.package-dependents-wrapper {
padding: 20px;
flex-direction: column;
}
.title {
position: relative;
align-self: flex-start;
font-size: 1.2em;
top: -5px;
left: -5px;
border-bottom: 1px dotted black;
}
.dependent-wrapper {
border-bottom: 1.5px solid black;
border-radius: 25px;
padding: 10px;
}
.package-dependent {
font-size: 1.2em;
padding: 5px 10px 5px 10px;
}
.divider {
margin: -12px;
font-size: 1.6em;
font-weight: lighter;
color: red;
}