-
Notifications
You must be signed in to change notification settings - Fork 0
/
ewwww-css.css
104 lines (84 loc) · 1.47 KB
/
ewwww-css.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
94
95
96
97
98
99
100
101
102
103
104
html, body {
background: #fcfcfc;
color: #222;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
margin: 0;
padding: 0;
height: 100vh;
width: 100vw;
}
header {
background: rgba(240, 240, 240, 1);
box-shadow: inset 0 -1px 2px 0 #bbb, inset 0 1px 2px 0 #bbb, inset 2px 0 2px 0 #bbb, inset -2px 0 2px 0 #bbb;
box-sizing: border-box;
font-family: "Gill Sans", sans-serif;
font-size: 79%;
padding: 1.8em 3em 2.7em;
min-height: 6em;
text-align: center;
position: fixed;
top: 0; left: 0;
max-width: 600px;
width: 100%;
z-index: 1;
transition: all 1s;
}
header h1 {
font-weight: 600;
letter-spacing: .01em;
margin: .25em;
}
header p {
color: #464646;
font-weight: 300;
margin: 0 auto;
max-width: 26rem;
}
header p b {
color: #363636;
display: block;
font-size: 108%;
font-weight: 600;
margin: .2em 0 .25em 0;
}
main {
position: fixed;
height: 100vh;
width: 100vw;
top: 0; left: 0;
z-index: 1;
}
ul {
display: flex;
justify-content: space-between;
margin: 0;
padding: 0;
height: 100%;
width: 100%;
position absolute;
left: 0;
top: 0;
}
li {
list-style-type: none;
width: 50%;
margin: 0;
padding: 0;
}
.emoji {
font-weight: 400;
}
@media only screen and (min-width: 600px) {
header {
border-radius: 8% / 16%;
font-size: 100%;
margin-top: -4em;
min-height: 6em;
padding: 1.8em 3em 2.7em;
position: static;
width: auto;
}
}