-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
144 lines (132 loc) · 2.35 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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
body{
background-color: hsl(226, 43%, 10%);
font-family: 'Rubik', sans-serif;
color: hsl(236, 100%, 87%);
margin: 0;
}
h1{
font-size: 18px;
font-weight: 500;
margin: 0;
}
h2{
font-size: 15px;
font-weight: 300;
margin: 0;
}
h3{
font-size: 30px;
font-weight: 400;
margin: 0;
}
.main{
margin-top: 80px;
display: grid;
row-gap: 25px;
}
.grid-item{
width: 86%;
margin: auto;
border-radius: 15px;
}
.activity-card{
color: hsl(236, 100%, 87%);
height: 150px;
display: flex;
align-items: flex-end;
font-size: 18px;
background-repeat: no-repeat;
background-position: top -10px right 12px;
}
.image{
width: 70px;
height: 70px;
border: solid 3px white;
border-radius: 50%;
}
.profile-img{
width: 100%;
margin: auto;
}
.user{
background-color: hsl(235, 46%, 20%);
}
.user-card{
height: 100%;
display: flex;
flex-direction: column;
align-content: space-around;
font-size: 15px;
font-weight: 100;
margin: 0;
}
.user-card h3{
margin-top: 5px;
font-size: 23px;
}
.user-info{
display: flex;
align-items: center;
justify-content: space-between;
border-radius: 15px;
background-color: hsl(246, 80%, 60%);
padding: 1.6rem;
}
.periods{
color: hsl(235, 45%, 61%);
display: flex;
align-items: center;
justify-content: space-between;
border-radius: 15px;
padding: 1.2rem;
}
.period-data{
display: flex;
background-color: hsl(235, 46%, 20%);
border-radius: 15px;
width: 100%;
height: 75%;
}
.content{
width: 85%;
margin: auto;
display: grid;
grid-template-columns: 1fr 1fr;
row-gap: 5px;
justify-items: start;
align-items: center;
}
.justify-end{
justify-self: end;
}
.work{
background-image: url("images/icon-work.svg");
background-color: hsl(15, 100%, 70%);
}
.play{
background-image: url("images/icon-play.svg");
background-color: hsl(195, 74%, 62%);
}
.study{
background-image: url("images/icon-study.svg");
background-color: hsl(348, 100%, 68%);
}
.exercise{
background-image: url("images/icon-exercise.svg");
background-color: hsl(145, 58%, 55%);
}
.social{
background-image: url("images/icon-social.svg");
background-color: hsl(264, 64%, 52%);
}
.self-care{
background-image: url("images/icon-self-care.svg");
background-color: hsl(43, 84%, 65%);
}
@media (min-width: 600px) {
.main{
margin-top: 80px;
display: grid;
row-gap: 25px;
}
}