-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathoutput.css
More file actions
121 lines (112 loc) · 3.23 KB
/
output.css
File metadata and controls
121 lines (112 loc) · 3.23 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
html{
background: black; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(left, #7ff4ff , #111111); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(right, #7ff4ff, #111111); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(right, #7ff4ff, #111111); /* For Firefox 3.6 to 15 */
background: linear-gradient(to right, #7ff4ff , #111111); /* Standard syntax (must be last) */
font-family: helvetica, serif;
}
div{
position: absolute;
margin: auto;
top: 150px;
right: 0;
left: 220px;
bottom: 0;
background-color: #161616;
color: white;
font-size: 15px;
font-family: helvetica, serif;
}
#about-project{
position: relative;
top: 10px;
left: 10px;
margin-right: 75%;
}
#about-ori{
position: relative;
top: 10px;
left: 10px;
margin-right: 92%;
}
#bio{
margin-top: 10px;
position: static;
margin-left: 0px;
width: 200px;
color: black;
background-color: transparent;
}
img{
position: absolute;
margin: auto;
top: 0;
right: 0;
left: 0;
bottom: 0;
}
object{
position: absolute;
margin: auto;
top: 0;
right: 0;
left: 0;
bottom: 0;
}
iframe{
position: absolute;
margin: auto;
top: 0;
right: 0;
left: 0;
bottom: 0;
}
button {
width: 200px;
border: 1px solid #111111;
background: #111111;
background: -webkit-gradient(linear, left top, left bottom, from(#e3e3e3), to(#111111));
background: -webkit-linear-gradient(top, #e3e3e3, #111111);
background: -moz-linear-gradient(top, #e3e3e3, #111111);
background: -ms-linear-gradient(top, #e3e3e3, #111111);
background: -o-linear-gradient(top, #e3e3e3, #111111);
background-image: -ms-linear-gradient(top, #e3e3e3 0%, #111111 100%);
padding: 15.5px 31px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(255,255,255,0.4) 0 1px 0;
-moz-box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(255,255,255,0.4) 0 1px 0;
box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(255,255,255,0.4) 0 1px 0;
text-shadow: #111111 0 1px 0;
color: #ffffff;
font-size: 19px;
font-family: helvetica, serif;
text-decoration: none;
vertical-align: middle;
}
button:hover {
border: 1px solid #111111;
text-shadow: #111111 0 1px 0;
background: #9ca7a8;
background: -webkit-gradient(linear, left top, left bottom, from(#111111), to(#9ca7a8));
background: -webkit-linear-gradient(top, #111111, #9ca7a8);
background: -moz-linear-gradient(top, #111111, #9ca7a8);
background: -ms-linear-gradient(top, #111111, #9ca7a8);
background: -o-linear-gradient(top, #111111, #9ca7a8);
background-image: -ms-linear-gradient(top, #111111 0%, #9ca7a8 100%);
color: #fff;
}
button:active {
text-shadow: #111111 0 1px 0;
border: 1px solid #111111;
background: #cfd1d1;
background: -webkit-gradient(linear, left top, left bottom, from(#111111), to(#9ca7a8));
background: -webkit-linear-gradient(top, #111111, #cfd1d1);
background: -moz-linear-gradient(top, #111111, #cfd1d1);
background: -ms-linear-gradient(top, #111111, #cfd1d1);
background: -o-linear-gradient(top, #111111, #cfd1d1);
background-image: -ms-linear-gradient(top, #111111 0%, #cfd1d1 100%);
color: #fff;
}