-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (63 loc) · 1.2 KB
/
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
@import url("https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap");
* {
font-size: 16px;
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Inter", sans-serif;
}
main {
padding: 30px;
user-select: none;
}
header > span {
font-size: 0.85rem;
font-weight: 700;
color: rgb(151, 151, 151);
letter-spacing: 0.02rem;
}
header > h1 {
color: #182b4d;
font-size: 2rem;
font-weight: 600;
margin-top: 5px;
}
.columns {
display: flex;
gap: 15px;
margin-top: 50px;
}
.column {
width: 100%;
background-color: #f4f5f7;
height: 75dvh;
border-radius: 6px;
}
.column__tittle {
color: #4d5c76;
font-size: 0.9rem;
font-weight: 700;
margin: 20px;
}
.column__cards {
padding: 4px;
height: 100%;
border-radius: 5px;
}
.card {
width: 100%;
min-height: 70px;
background-color: white;
border-radius: 5px;
border: 1px solid #dfe1e6;
box-shadow: 0 2px 2px #dfe1e6;
padding: 12px 14px;
font-size: 0.9rem;
font-weight: 500;
color: #4d5c76;
margin-bottom: 5px;
}
.column__highlight {
background-color: #deebff;
border: 2px solid #2484ff;
}