-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (84 loc) · 1.3 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/* FONTS */
/* End Fonts */
* {
margin: 0px;
padding: 0px;
max-width: 100%;
box-sizing: border-box;
-webkit-font-smoothing: subpixel-antialiased;
}
body{
font-family: monospace;
}
.mainbody{
width: 100%;
height: 100%;
z-index: 100;
padding: 1em;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
background-image: url('yuichi.png');
background-repeat: no-repeat;
background-size: cover;
}
/* Header Styles */
h1, h2{
text-align: center;
}
.main{
background-color: rgba(0,0,0,0.5);
border: 3px grey solid;
border-radius: 25px;
padding: 1em;
width: 50%;
display: flex;
flex-direction: column;
align-items: center;
color: white;
}
.main>*{
margin-top: 1em;
}
.search {
background: no-repeat;
border-width: 0px 0px 1px 0px;
color: white;
font-size: 18px;
}
.search:focus:focus-visible{
outline: none;
}
.links-wrapper{
display: flex;
}
.links-wrapper>*{
margin: 0 1em;
}
a{
text-decoration: none;
color: white;
}
li a{
font-size: 18px;
font-weight: 700;
}
/*li header*/
li:first-child {
list-style: none;
font-weight: bolder;
line-height: 2em;
font-size: 24px;
}
li:hover a{
color: rgb(167, 86, 77);
transition: 0.5s;
}
/* Custom bullets */
ul.degen{
list-style: none;
}
ul.degen img{
height: 18px;
}