-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstylesheet.css
More file actions
81 lines (69 loc) · 1.37 KB
/
stylesheet.css
File metadata and controls
81 lines (69 loc) · 1.37 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
@import url('https://fonts.googleapis.com/css?family=Roboto');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
@import url('https://fonts.googleapis.com/css?family=Mina:400,700');
h1 {
font-family: 'Mina', sans-serif;
margin: 0;
padding: 0;
}
body {
font-family: 'Open Sans', sans-serif;
background-color: #EFEFEF;
}
a {
color: #000000;
text-decoration: none;
}
#iconholder {
/*position: absolute;*/
position: relative;
text-align: center;
bottom: 0px;
}
#iconholder img {
width: 100px;
border-radius: 25%;
}
#menu ul {
list-style: none;
padding-left: 0;
display: table;
}
#menu li {
display: inline;
}
#menu ul li {
position: relative;
color: #FFF;
text-decoration: none;
font-size: 20px;
padding-right: 10px;
padding-left: 10px;
}
#menu ul li:hover {
color: #FFF;
}
#menu ul li:before {
background-color: black;
content: "";
position: absolute;
width: 100%;
height: 2px;
bottom: 0;
left: 0;
background-color: #555;
visibility: hidden;
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
#menu ul li:hover:before {
visibility: visible;
-webkit-transform: scaleX(.7);
transform: scaleX(.7);
}
.button {
text-decoration: none;
padding: 2px 6px 2px 6px;
}