-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
60 lines (59 loc) · 971 Bytes
/
style.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
header h1 {
display: inline-block;
margin: 10px 0;
}
header + hr {
margin: 10px 0;
}
#contacts p,
#contacts p.lead {
margin: 0;
}
.userAuth {
display: block;
margin: 20px 0 0;
}
.modal-header:last-child {
border-bottom: 0;
}
.card {
display: inline-block;
margin: 1em;
max-width: calc(25% - 2em);
}
#contacts {
margin-left: -1em;
margin-right: -1em;
display: flex;
flex-wrap: wrap;
}
.user-info {
display: inline-block;
margin: 0 0.5em;
}
.user-info img {
display: inline-block;
max-width: 2em;
}
.auth-true .authenticated,
.auth-false .unauthenticated {
display: block;
}
.auth-true .unauthenticated,
.auth-false .authenticated {
display: none;
}
#contacts .contact {
width: 18rem;
}
.delete-button {
font-size: 0.8rem;
float: right;
margin-left: 0.5rem;
padding: 0.05rem 0.3rem;
border: 1px solid transparent;
}
.delete-button:hover {
box-shadow: 0 0 5px 3px rgba(100, 100, 100, 0.3x);
border: 1px solid #aaa;
}