-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbaseStyle.css
More file actions
105 lines (87 loc) · 1.29 KB
/
baseStyle.css
File metadata and controls
105 lines (87 loc) · 1.29 KB
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
html{
padding: 0px;
margin: 0px;
}
/* h1 {
background-color: #2AA9E0
} */
body{
margin: 0px;
font-family: 'Rokkitt', serif;
}
.main {
display: grid;
width: 100%;
min-height: 100vh;
/* padding: .5rem; */
grid-template-rows: 4rem 2rem auto 2.5rem;
grid-template-columns: 1fr 300px;
}
.main > * {
padding: .5rem
}
.accent {
background-color: #272744;
color: #fbf5ef;
}
.title {
text-align: center;
padding: .5rem;
font-family: 'Rokkitt', serif;
}
.full-span{
grid-column: 1 / -1;
}
.grid {
display: flex;
width: 100%;
flex-wrap: wrap;
flex-direction: row;
gap: .5rem;
flex-grow:1;
flex-shrink:0;
justify-content: space-around;
}
.grid-wrapper {
width: 100% !important;
}
@media screen and (max-width: 768px){
body{
background-color: aqua;
}
.main {
grid-template-columns: 100% !important;
grid-template-rows: auto !important;
justify-content: center;
}
.main>* {
grid-column: 1 / -1 !important;
grid-row: auto !important;
}
.grid {
flex-direction: column;
align-items: center;
}
.grid>*{
flex: 1;
}
}
/* .grid-wrapper {
width: 260px;
} */
.navigator {
background: #494d7e;
}
.about-me {
display: flex;
justify-content: center;
}
/* .card {
width: 300px;
} */
.about-me .card {
height: 326px;
}
.grid-wrapper .card {
height: 100%;
}