blob: e60b3486b9c9744f306bd9386914294c7a21a8e0 (
plain)
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
|
.User-checkin {
grid-area: checkin;
height: 100vh;
background-color: #121212;
z-index: 10;
color: white;
border-radius: 10px;
display: flex;
font-size: 18px;
cursor: default;
/* Transparent background */
background: rgba(0, 0, 0, 0);
overflow: scroll;
}
ul {
list-style-type: none;
}
.User-checkin > div {
z-index: 10;
background-color: #333333;
border-radius: 20px;
margin: 5px 5px 5px 0;
}
.Coord-ex {
height: 1vh;
margin: 0;
padding: 0;
text-align: center;
}
.Chosen-user > h3, .Checkins > h3 {
display: flex;
justify-content: space-between;
height: 5vh;
padding: 0 30px;
}
.Chosen-user > h2, .Checkins > h2 {
display: flex;
justify-content: center;
height: 5vh;
padding: 0 30px;
}
.Checkin-list {
padding: 0 20px;
height: 85vh;
overflow: scroll;
}
.User-checkin-list {
height: 75vh;
overflow: scroll;
list-style-position: inside;
padding: 0 20px;
text-align: center;
text-indent: -12px;
}
.User-checkin-list > li {
margin-bottom: 20px;
}
.Checkin {
padding-top: 10px;
border-bottom: 1px solid #e6ecf0;
}
.Checkin:last-child {
border-bottom: none;
}
.Img-flex {
margin: 5px 10px 10px 0;
gap: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.Img-btn {
background-color: #424242;
border-radius: 50%;
margin-left: auto;
}
.Img-btn:hover {
box-shadow: 3px 3px #333333;
cursor: pointer;
}
.Clickable-name {
cursor: pointer;
text-decoration: underline;
color: lightgreen;
}
/* CSS borrowed from W3 Schools */
input[type=search] {
width: 80%;
padding: 12px 20px;
box-sizing: border-box;
font-size: 80%;
background-color: lightgoldenrodyellow;
border-radius: 2;
}
.Title {
margin-top: 20px;
}
|