-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
94 lines (92 loc) · 1.77 KB
/
index.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
*,::before,::after{
box-sizing: border-box;
/* color: blue; */
text-align: center;
background-color: bisque;
/* color: black; */
}
.container{
max-width: 500px;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-auto-rows: minmax(50px, auto);
padding: 10px;
}
.img-div{
grid-column: 1/4;
grid-row: 1/3;
display: flex;
justify-content: center;
}
.img-div img{
border-radius: 50%;
}
.intro{
grid-column: 1/4;
grid-row: span 3;
padding: 5px;
}
.my-aside{
grid-column: 1/4;
grid-row: span 2;
padding: 5px;
}
.goals-drop-down{
grid-column: 1/4;
grid-row: span 4;
display: flex;
flex-direction: column;
}
.yearly-goal{
padding: 10px;
}
.first_year{
margin-bottom: 5px;
}
.title-holder{
display: flex;
justify-content: space-between;
}
.open-close{
padding: 5px;
}
.not-active{
display: none;
}
@media screen and (min-width: 750px) {
body{
display: grid;
place-content: center;
}
.container{
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-auto-rows: minmax(50px, auto);
padding: 10px;
max-width: 1200px;
gap: 20px;
/* background-color: black; */
}
.img-div{
grid-column: 1/4;
grid-row: 1/3;
display: flex;
justify-content: center;
}
.intro{
grid-column: 1/4;
grid-row: span 3;
padding: 5px;
}
.my-aside{
grid-column: 4/7;
grid-row: 1/3;
padding: 5px;
}
.goals-drop-down{
grid-column: 4/7;
grid-row: 3/6;
display: flex;
flex-direction: column;
}
}