This repository was archived by the owner on Nov 21, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +43
-35
lines changed Expand file tree Collapse file tree 3 files changed +43
-35
lines changed Original file line number Diff line number Diff line change @@ -111,6 +111,8 @@ <h2 class="faq-title">
111
111
< p > A formal plan has not been discussed yet but the TC is looking into regular updates, especially if there are no breaking changes from V8's API.</ p >
112
112
</ div >
113
113
</ div >
114
-
114
+ < a class ="button " href ="index.html ">
115
+ Back to home
116
+ </ a >
115
117
</ body >
116
118
</ html >
Original file line number Diff line number Diff line change 19
19
</ h2 >
20
20
21
21
< div class ="release ">
22
- < div class ="release-logo "> < img style ="max-width:3em " src ="images/1.0.0.png "> </ div >
23
- < div class ="release-stability "> Beta</ div >
24
- < div class ="release-date "> < a href ="https://iojs.org/download/dist/v1.0.0 "> Jan 13th 2015</ a > </ div >
25
- < div class ="release-source "> < a href ="https://iojs.org/download/dist/v1.0.0/iojs-v1.0.0.tar.gz "> 1.0.0.tgz</ a > </ div >
26
- < div class ="release-windows "> Windows (< a href ="https://iojs.org/download/dist/v1.0.0/iojs-v1.0.0-x86.msi "> 32</ a > /< a href ="https://iojs.org/download/dist/v1.0.0/iojs-v1.0.0-x64.msi "> 64</ a > )</ a > </ div >
27
- < div class ="release-mac "> < a href ="https://iojs.org/download/dist/v1.0.0/iojs-v1.0.0.pkg "> Mac</ a > </ div >
22
+ <!-- comments necessary to fix http://css-tricks.com/fighting-the-space-between-inline-block-elements/ -->
23
+ < img class ="release-logo " style ="max-width:3em " src ="images/1.0.0.png " /> <!--
24
+ --> < div class ="release-stability "> Beta</ div > <!--
25
+ --> < div class ="release-date "> < a href ="https://iojs.org/download/dist/v1.0.0 "> Jan 13th 2015</ a > </ div > <!--
26
+ --> < div class ="release-source "> < a href ="https://iojs.org/download/dist/v1.0.0/iojs-v1.0.0.tar.gz "> 1.0.0.tgz</ a > </ div > <!--
27
+ --> < div class ="release-windows "> Windows (< a href ="https://iojs.org/download/dist/v1.0.0/iojs-v1.0.0-x86.msi "> 32</ a > /< a href ="https://iojs.org/download/dist/v1.0.0/iojs-v1.0.0-x64.msi "> 64</ a > )</ a > </ div > <!--
28
+ --> < div class ="release-mac "> < a href ="https://iojs.org/download/dist/v1.0.0/iojs-v1.0.0.pkg "> Mac</ a > </ div >
28
29
</ div >
29
30
30
31
< p >
Original file line number Diff line number Diff line change 31
31
}
32
32
a {
33
33
text-decoration : none;
34
- color : # D3C132 ;
35
- border-bottom : 1px solid # F8E233 ;
34
+ color : # FE7110 ;
35
+ border-bottom : 1px solid # FE7110 ;
36
36
transition : .3s all ease;
37
37
}
38
38
a : hover {
39
- color : # F7E133 ;
40
- border-bottom : 1px solid # F8E233 ;
39
+ color : # FFA158 ;
40
+ /* border-bottom: 1px solid #FFA158;*/
41
41
}
42
42
.button {
43
43
border : solid 1px # 2F2E2C ;
@@ -57,7 +57,9 @@ a:hover {
57
57
}
58
58
.button : hover {
59
59
background-color : # 2F2E2C ;
60
- color : # FFFFFF ;
60
+ color : # FADF3F ;
61
+ /*color: #FE7110;*/
62
+ /*color: #FE5210;*/
61
63
}
62
64
.multi-button {
63
65
display : inline-block
@@ -83,7 +85,7 @@ a:hover {
83
85
margin : 0 ;
84
86
line-height : 3em ;
85
87
background : # 2F2E2C ;
86
- color : white ;
88
+ color : # FADF3F ;
87
89
}
88
90
.faq-body {
89
91
margin : 1em ;
@@ -104,48 +106,51 @@ a:hover {
104
106
105
107
/*releases*/
106
108
107
- div .release {
109
+ .release {
108
110
/*border: solid 1px #2F2E2C;*/
109
- display : inline-block;
111
+ display : block;
112
+ text-align : center;
110
113
padding : 0 0 0 0 ;
111
- margin : 10px ;
114
+ margin : 26 px 10px ;
112
115
background-color : transparent;
113
116
border-radius : 3px ;
114
117
transition : .3s all ease;
115
118
color : # 2F2E2C ;
116
119
font-weight : bold;
117
120
}
118
- div .release-stability {
119
- float : left;
121
+ .release > * {
122
+ display : inline-block;
123
+ vertical-align : middle;
124
+ border-left : solid 1px # 757575 ;
125
+ }
126
+ .release > * : first-child {
127
+ border-left : none;
128
+ }
129
+ .release-stability {
130
+ /*float:left;*/
120
131
padding : 1em ;
121
- border-right : solid 1px # 2F2E2C ;
122
- border-left : solid 1px # 2F2E2C ;
123
132
}
124
- div .release-date {
125
- float : left;
133
+ .release-date {
134
+ /* float:left;*/
126
135
padding : 1em ;
127
- border-right : solid 1px # 2F2E2C ;
128
136
}
129
- div .release-logo {
130
- float : left;
131
- padding-right : 1em ;
137
+ .release-logo {
138
+ margin-right : 1em ;
132
139
}
133
- div .release-source {
134
- float : left;
140
+ .release-source {
141
+ /* float:left;*/
135
142
padding : 1em ;
136
- border-right : solid 1px # 2F2E2C ;
137
143
}
138
- div .release-windows {
139
- float : left;
144
+ .release-windows {
145
+ /* float:left;*/
140
146
padding : 1em ;
141
- border-right : solid 1px # 2F2E2C ;
142
147
}
143
- div .release-mac {
144
- float : left;
148
+ .release-mac {
149
+ /* float:left;*/
145
150
margin : 0 0 0 0 ;
146
151
padding : 1em ;
147
152
}
148
153
149
- div .description {
154
+ .description {
150
155
text-align : left;
151
156
}
You can’t perform that action at this time.
0 commit comments