-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.module.css
More file actions
60 lines (51 loc) · 772 Bytes
/
index.module.css
File metadata and controls
60 lines (51 loc) · 772 Bytes
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
.container {
font-family: "Source Sans Pro";
font-size: small;
width: 80%;
margin-top: auto;
margin-bottom: auto;
max-width: 1800px;
position: relative;
}
.labelAndLink {
display: flex;
justify-content: space-between;
align-items: center;
}
.bold {
font-weight: 600;
}
.link {
font-weight: 600;
}
.link:hover {
color: #1f6dc6;
}
.msg {
margin-top: 6px;
color: #5d6280;
}
.tooltip {
opacity: 1;
z-index: 10;
max-width: 60%;
visibility: visible;
}
.comments {
border: 1px solid #e1e4e8;
background-color: white;
width: 320px;
position: fixed;
z-index: 10;
right: 0;
}
.button {
background: transparent;
border: none;
margin-left: 1rem;
color: #3d91f0;
cursor: pointer;
}
.clickable {
cursor: pointer;
}