-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTests.css
69 lines (58 loc) · 1.21 KB
/
Tests.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
ul {
list-style-type: none;
padding: 0;
display: flex;
flex-wrap: wrap;
gap: 16px;
}
li {
margin-bottom: 1rem;
}
.contact-card {
padding: 16px;
flex: 1;
min-width: 275px;
border-radius: 8px;
background: rgb(255, 255, 255);
/* box-shadow: 0.3px 0.5px 0.4px hsl(var(--shadow-color) / 0.55),
0.3px 0.6px 0.5px -0.7px hsl(var(--shadow-color) / 0.48),
0.7px 1.5px 1.2px -1.4px hsl(var(--shadow-color) / 0.41),
1.9px 3.7px 3.1px -2.1px hsl(var(--shadow-color) / 0.35),
4.1px 8.2px 6.9px -2.9px hsl(var(--shadow-color) / 0.28),
7.7px 15.4px 12.9px -3.6px hsl(var(--shadow-color) / 0.21),
13.2px 26.3px 22.1px -4.3px hsl(var(--shadow-color) / 0.14),
20.8px 41.5px 34.8px -5px hsl(var(--shadow-color) / 0.07); */
color: black;
}
.name-header {
text-align: center;
}
dl {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 20px;
}
dd {
margin: 0;
}
dt {
font-size: 1rem;
font-weight: 500;
color: hsl(38deg 40% 35%);
}
.messageElement {
align-items: center;
text-align: center;
padding-bottom: 2rem;
}
.page-header {
font-size: 1rem;
font-weight: bold;
}
a:link {
color: rgb(50, 175, 180);
}
a:visited {
color: rgb(81, 53, 221);
}