-
Notifications
You must be signed in to change notification settings - Fork 3
/
styles.css
93 lines (79 loc) · 1.3 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
html {
scroll-behavior: smooth;
}
* {
padding: 0;
box-sizing: border-box;
margin: 0;
}
body {
min-height: 100vh;
background-color: #232128;
color: whitesmoke;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.on-load {
height: 50vh;
}
header {
padding: 0;
height: 160px;
display: flex;
justify-content: stretch;
align-items: flex-start;
}
header div {
padding: 0;
margin: 0 1rem;
}
header div img {
display: block;
height: 100%;
max-height: 160px;
width: auto;
}
main {
height: calc(50vh - 2em - 160px);
display: grid;
grid-template-rows: 1fr 4fr 1fr;
grid-template-columns: 1fr;
margin: 2em 0 0 0;
gap: 1em;
}
main #slogan h1 {
text-align: center;
}
main .masthead {
display: flex;
flex-direction: row;
flex-wrap: wrap;
/* grid-template-columns: repeat(auto-fill, minmax(300px, 2fr)); */
}
main .masthead > div {
min-width: 500px;
width: 45vw;
}
main .masthead #about {
margin: 0 0 0 5vw;
}
main .masthead #about h1 {
font-size: 48px;
margin-bottom: 12px;
}
main .masthead #about h4 {
font-size: 24px;
margin-bottom: 12px;
}
#screen {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.logo-div {
display: flex;
justify-content: center;
}
.pill {
border-radius: 9999px;
}