-
Notifications
You must be signed in to change notification settings - Fork 186
Expand file tree
/
Copy pathfront.css
More file actions
124 lines (123 loc) · 2.13 KB
/
front.css
File metadata and controls
124 lines (123 loc) · 2.13 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
body {
font-family: 'Open Sans',Helvetica,Arial,sans-serif;
background-color: rgba(0, 0, 0, 0.9);
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: 0;
}
#fullscreen {
z-index: -999;
min-height: 100%;
min-width: 1024px;
width: 100%;
height: auto;
position: fixed;
top: 0;
left: 0;
}
#avatar {
height: 180px;
border-radius: 100%;
border: 5px solid white;
margin-bottom: 40px;
}
h1 {
color: white;
font-weight: bold;
letter-spacing: 0.1em;
font-size: 4em;
font-family: 'Open Sans';
margin: -10px 0;
}
h3 {
color: white;
padding-bottom: 20px;
font-weight: thin;
}
.content {
padding-top: 100px;
padding-bottom: 40px;
background-color: rgba(0, 0, 0, 0.5);
text-align: center;
}
ul {
list-style: none;
padding: 0;
}
li {
border-radius: 100%;
border: 2px solid white;
color: white;
margin: 8px;
display: inline-block;
list-style: none;
width: 65px;
height: 65px;
}
li:hover {
color: white;
text-decoration: none;
-webkit-transition: 500ms;
-moz-transition: 500ms;
transition: 500ms;
text-decoration: none;
background-color: rgba(0, 0, 0, 0.5);
}
a {
color: white;
padding: 15px;
text-decoration: none;
}
.description {
display: none;
}
@media (max-width: 450px) {
ul {
text-align: center;
}
li {
border-radius: 0%;
border: none;
color: white;
margin: 8px;
display: block;
list-style: none;
margin: 10px 0px;
text-align: center;
height: auto;
width: auto;
}
li:hover {
background-color: none;
transition: none;
}
a {
text-align: justify;
border: 2px solid white;
border-radius: 5px;
color: white;
padding: 15px;
padding-left: 30px;
width: 70%;
}
a:hover {
-webkit-transition: 500ms;
-moz-transition: 500ms;
transition: 500ms;
background-color: rgba(0, 0, 0, 0.5);
color: white;
text-decoration: none;
}
.description {
display: inline-block;
color: white;
font-family: Arial;
margin-left: 40px;
}
.content {
padding-top: 60px;
}
}