-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
115 lines (113 loc) · 1.8 KB
/
index.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
105
106
107
108
109
110
111
112
113
114
115
@charset "UTF-8";
ul, p, li, nav, a{
margin: 0px;
padding: 0px;
}
nav{
width: calc(100%-4px);
height: 26px;
position: -webkit-sticky;
position: sticky;
top: 0px;
border-style: solid;
border-width: 2px;
border-color: #278568;
}
nav ul{
height: 100%;
width: 100%;
background-color: #39bf95;
}
nav li{
float: left;
display: block;
}
nav a{
height: 26px;
padding-left: 5px;
padding-right: 5px;
display: inline-block;
border-style: solid;
border-width: 2px;
border-color: #278568;
text-align: center;
margin-left: -2px;
margin-top: -2px;
text-decoration: none;
color: #11392c;
background-color: #39bf95;
transition: 0.5s;
}
nav a div{
display: block;
font-size: 16px;
font-family: helvetica;
font-style: normal;
margin-top: 5px;
}
nav a:hover{
color: #39bf95;
background-color: #278568;
}
html{
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
}
body{
background-image: url(images/chain.png);
color: #eeeeee;
margin: 0px;
padding: 0px;
width: 100%;
min-height: calc(100vh - 70px);
}
div.container{
width: 100vw;
min-height: calc(100vh - 72px);
background-color: black;
background-color: rgba(0, 0, 0, 0.5);
margin: 0px;
padding: 0px;
display: flex;
}
div.content{
width: 1024px;
margin: auto;
margin-top: 104px;
font-size: 16px;
font-family: georgia;
color: #eeeeee;
}
div#bg{
background-color: #404040;
background-color: rgba(120, 120, 120, 0.4);
}
div#bio{
width: calc(100% - 20px);
padding-bottom: 10px;
padding-top: 10px;
margin: auto;
}
h1{
padding: 0px;
padding-left: 5px;
margin: 0px;
height: 40px;
width: calc(100% - 9px);
margin-bottom: -2px;
background-color: #39bf95;
border-style: solid;
border-width: 2px;
border-color: #278568;
}
ul#nicknames{
padding-left: 25px;
}
footer{
font-style: italic;
font-family: serif;
margin: auto;
margin-top: 15px;
}