-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathiridescent.css
More file actions
110 lines (100 loc) · 1.63 KB
/
iridescent.css
File metadata and controls
110 lines (100 loc) · 1.63 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
106
107
108
109
110
* {
/* box-sizing: border-box; */
}
html, body {
position: absolute;
top: 0;
margin: 0;
left: 0;
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%;
min-width: 100%;
min-height: 100%;
/* touch-action: none; */
overflow-x: hidden;
background-color: #fefefe;
font-family: "Lucida Console", Monaco, monospace;
font-size: 12px;
line-height: 1.5em;
color: #0f0f0f;
}
h1 {
margin-top: 4vh;
text-align: center;
}
h2 {
text-align: center;
font-size: 1.25em;
}
#links {
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
}
#links > a {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#links > a > img {
width: 20%;
max-width: 100px;
min-width: 35px;
height: auto;
margin: auto;
padding: auto;
}
#nerfs {
width: 92%;
padding: 40px 4% 40px 4%;
margin: 0%;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: space-around;
align-items: center;
}
.nerf {
width: 100%;
max-width: 1000px;
min-height: 55vh;
border-radius: 30px 30px 30px 30px;
margin: 0%;
padding: 0%;
margin: 40px;
}
/* media query for mobile */
@media screen and (max-width: 600px) {
h1 {
margin-top: 8vh;
}
/* #links {
flex-direction: column;
}
#links > a {
margin: 2%;
}
#links > a > img {
width: 50%;
max-width: 200px;
min-width: 100px;
}
#nerfs {
width: 100%;
padding: 0%;
margin: 0%;
}
.nerf {
width: 100%;
max-width: 100%;
border-radius: 0px 0px 0px 0px;
margin: 0%;
padding: 0%;
margin: 0%;
} */
}