-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (87 loc) · 1.6 KB
/
style.css
File metadata and controls
102 lines (87 loc) · 1.6 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
* {
box-sizing: border-box;
}
html {
font-family: "Roboto", sans-serif;
font-weight: 400;
/* font-weight:
thin - 100
extraLight - 200
light - 300
regular - 400
medium - 500
semiBold - 600
bold - 700
extraBold - 800
black - 900
*/
font-size: 16px;
background-color: rgb(220, 220, 220);
}
body {
padding: 0;
margin: 0;
}
#landing {
width: 100vw;
height: 100vh;
padding: 5vh;
background-color: rgb(220, 220, 220);
display: flex;
flex-direction: column;
}
#pageTitleImg {
width: 45vw;
flex-grow: 1;
align-self: center;
}
#areas {
display: flex;
flex-direction: row;
justify-content: space-between;
}
#areas div {
padding-right: 1vh;
padding-left: 1vh;
}
#canvasSquares {
position: absolute;
top: 0;
left: 0;
pointer-events: none;
}
.icon {
width: 5vh;
margin: 1vh;
}
.icon:hover {
filter: brightness(0) saturate(100%) invert(31%) sepia(0%) saturate(0%) hue-rotate(42deg) brightness(95%) contrast(91%);
}
@media only screen and (max-width: 600px) {
/*
#landing {
background-color: rgb(255, 0, 30);
}
*/
#pageTitleImg {
width: 80vw;
}
#areas {
flex-wrap: wrap;
justify-content: space-around;
}
}
@media only screen and (min-width: 600px) and (max-width: 770px) {
/*
#landing {
background-color: rgb(51, 255, 0);
}
*/
#pageTitleImg {
width: 65vw;
}
#areas {
flex-wrap: wrap;
justify-content: space-around;
}
}