forked from voxie12/voxie12.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (73 loc) · 1.48 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');
html {
background-color: #FBF0FD;
align-items: center;
color: #292828;
display: flex;
font-family: 'Ubuntu Mono', monospace;
font-size: 25px;
height: 100%;
justify-content: center;
margin: 0;
}
body {
display: flex;
margin: 1em;
padding: 1em;
}
h1 {
font-size: 2em;
grid-column: 1 / -1;
margin: 0;
text-align: center;
color: #ff7a93;
}
a {
color: inherit;
text-decoration: none;
}
a:focus,
a:hover {
color: #a9b1d6;
}
nav {
display: grid;
grid-template-columns: 1fr 1fr;
margin: 0 1em;
min-width: 24em;
padding: 1em 0;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
white-space: nowrap;
}
li:first-child {
font-weight: bold;
line-height: 2em;
color: #ad8ee6;
}
img {
border: 2px solid #ebdbb2;
height: auto;
object-fit: cover;
object-position: 50% 100%;
width: 10em;
}
input {
background-color: unset;
font: 16px 'Ubuntu Mono', monospace;
color: #ebdbb2;
height: 100%;
width: 100%;
border-top-style: hidden;
border-bottom-style: soild;
border-left-style: hidden;
border-right-style: hidden;
border-bottom-color: #ff9e64;
text-align: center;
margin-top: 50px;
outline: 0;
padding-bottom: 0.5em;
}