-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
76 lines (70 loc) · 1.58 KB
/
styles.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
75
76
:root{
--background-color: #2f323a;
--text-color: #a6a7aa;
--white-color: #f8f8f8;
--shadow-color: rgba(0, 0, 0, 0.2);
--accent-color: #007be2;
--light-accent-color: #1ca8dc;
--accent2-color: #5a33f0;
--light-accent2-color: rgb(156, 130, 248, .2);
}
#title{
color: var(--accent2-color);
text-shadow: 3px 3px 3px var(--shadow-color);
position: relative;
top: 8%;
left: 50%;
width: fit-content;
transform: translateX(-50%);
}
html, body{
height: 100%;
margin: 0;
padding: 0;
color: var(--text-color);
background-color: var(--background-color);
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 12.5px;
}
.grid-container{
display: grid;
grid-template-columns: repeat(4, 100px);
grid-template-rows: auto;
grid-gap: 40px;
top: 20%;
position: relative;
justify-content: center;
}
*{
box-sizing: border-box;
/* border: 1px solid red; */
}
.tracker{
height: 130px;
width: 130px;
border: 1px solid var(--accent2-color);
border-radius: 50%;
background-color: var(--light-accent2-color);
padding: 20px;
text-align: center;
box-shadow: 5px 5px 5px var(--shadow-color);
}
.streak-days{
color: var(--light-accent-color);
display: block;
font-size: 1.7rem;
}
.streak-activity{
color: var(--accent-color);
display: block;
font-size: .9rem;
margin: 5px;
}
/*
grey #2f323a
blue #007be2
light blue #1ca8dc
purple #9c83f8
dark purple #5a33f0
light gray a6a7aa
*/