-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathstyle.module.css
More file actions
98 lines (94 loc) · 1.62 KB
/
style.module.css
File metadata and controls
98 lines (94 loc) · 1.62 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
.home {
min-height: 90vh;
position: relative;
display: grid;
grid-template-columns: 66fr 33fr;
grid-template-areas: "main nav";
}
.container {
grid-area: main;
display: flex;
flex-direction: column;
justify-content: flex-start;
padding-left: 5vw;
padding-top: 8vw;
}
.heading {
font-family: var(--heading-font);
font-style: normal;
font-weight: normal;
font-size: 3.8rem;
line-height: 72px;
color: rgba(255, 255, 255, 0.9);
text-shadow: -4px 4px 4px #10abc2;
}
.text {
font-family: monospace;
font-style: normal;
font-weight: normal;
font-size: 1.4rem;
margin: 5vh 0;
width: 30vw;
line-height: 31px;
color: #bfc0c2;
}
.learnQ {
width: 30vw;
}
.brackets {
width: 20vw;
margin-right: 5vw;
margin-top: 8vw;
}
@media only screen and (max-width: 1180px) {
.home {
grid-template-columns: auto;
grid-template-rows: 50% 40%;
background-image: none;
grid-template-areas:
"main"
"footer";
}
.container {
justify-content: center;
padding-left: 0;
align-items: center;
}
.heading {
font-size: 3rem;
text-align: center;
margin-top: 10vh;
margin-bottom: 5vh;
}
.brackets {
display: none;
}
.text {
text-align: center;
margin-top: 5vh;
width: 50vw;
margin-bottom: 5vh;
font-size: 1rem;
}
.learnQ {
width: 40vw;
}
}
@media only screen and (max-width: 650px) {
.container{
padding-left: 0;
}
.heading {
font-size: 2rem;
text-align: center;
margin-top: 10vh;
margin-bottom: 5vh;
}
.text {
width: 90vw;
line-height: normal;
}
.learnQ {
width: 80vw;
}
}