-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmainstyle.css
More file actions
106 lines (101 loc) · 1.67 KB
/
Copy pathmainstyle.css
File metadata and controls
106 lines (101 loc) · 1.67 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
@import url('https://fonts.googleapis.com/css?family=B612|Roboto+Condensed|Lato|Indie+Flower');
h1, h2, h3, h4, h5 {
font-family: Lato;
}
p {
font-family: "Roboto Condensed";
}
li {
font-family: B612;
}
#logo {
width: 15%;
height: auto;
}
#header {
overflow: hidden;
position: -webkit-sticky; /* Safari */
position: sticky;
overflow: hidden;
}
#menu {
position: absolute;
right: 0;
top: 0;
}
.menubutton {
padding: 10px;
padding-right: 25px;
margin: 10px;
background-color: transparent;
border: none;
border-right: 1px solid;
text-align: center;
color: auto;
color: white;
font-family: "Indie Flower";
font-size: 24px
}
.menubutton:hover{
animation-name: mbhover;
animation-duration: 1s;
animation-fill-mode: forwards;
}
@keyframes mbhover {
100% {background-color: blue;}
}
#projects.menubutton {
border: none;
}
a.menuba {
color: transparent;
}
div.content {
text-align: center;
border-radius: 25px;
background-color: black;
padding: 50px;
margin-top: 100px;
position: absolute;
left: 10%;
right: 10%;
margin-bottom: 100px;
color: white;
border: none;
}
div.content li {
text-align: left;
color: white;
}
div.content a {
text-decoration: none;
}
div#header {
background-color: black;
}
body {
background-color: blue;
}
table {
border: blue;
margin-top: 25px;
}
td.none {
border: none;
}
.verse {
font-weight: normal;
font-style: italic;
}
iframe {
border: none;
}
button:not(.menubutton) {
border: none;
background-color: blue;
color: white;
padding: 15px;
font-size: 20px;
font-family: 'Indie Flower';
border-radius: 50px;
}