-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathstyle.module.css
More file actions
92 lines (84 loc) · 1.55 KB
/
style.module.css
File metadata and controls
92 lines (84 loc) · 1.55 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
.container {
height: 91vh;
background-color: var(--background-gradient);
display: grid;
grid-template-columns: 50% 50%;
grid-template-areas: "content vectors";
}
.content {
grid-area: content;
padding-left: 5vw;
}
.heading {
margin: 0;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.9);
text-shadow: -4px 4px 4px #10abc2;
font-family: var(--heading-font);
font-size: 4.5rem;
}
.heading2 {
margin: -2vh 0;
text-transform: uppercase;
font-family: var(--heading-font);
font-size: 4.5rem;
color: #00050b;
text-shadow: -4px 4px 4px #10abc2;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #fff;
}
.highlight {
color: var(--heading-color);
font-weight: 600;
}
.para {
color: rgba(255, 255, 255, 0.75);
font-family: monospace;
width: 80%;
line-height: 23px;
font-size: 1rem;
margin-left: 1vh;
}
.vectors {
grid-area: vectors;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
height: 80%;
}
.vectors > img {
width: 40vw;
}
.break {
margin-bottom: 5vh;
}
@media only screen and (max-width: 1180px) {
.content{
padding-left: 0;
}
.container {
grid-template-columns: 100% 00%;
justify-content: center;
padding-left: 0;
align-items: flex-start;
}
.vectors {
display: none;
}
.heading,
.heading2 {
font-size: 3rem;
text-align: center;
}
.para {
text-align: center;
margin: 1vh auto;
width: 90%;
}
}
@media only screen and (max-width: 370px) {
.container {
padding-top: 20vh;
}
}