Skip to content

Commit c5a8191

Browse files
author
Brice Fernandes
committed
Fixed box-sizing issue in FF
1 parent 5a08d95 commit c5a8191

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

css/style.css

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11

2-
* { box-sizing: border-box;}
2+
* {
3+
box-sizing: border-box;
4+
-moz-box-sizing: border-box;
5+
-webkit-box-sizing: border-box;}
36

47
body,html,div,p,h1,h2,h3,h4 {
58
padding:0px;
@@ -68,7 +71,7 @@ html, body{
6871
}
6972
#console {
7073

71-
// background: #0e1628;
74+
/* background: #0e1628; */
7275
background: #161616;
7376
color:#f4ffff;
7477
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
@@ -152,7 +155,6 @@ float:right;
152155
#tutorial code{
153156
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
154157
background-color:#444;/* rgb(75,3,75); */
155-
font-family:
156158
padding-top:2px;
157159
padding-left:3px;
158160
padding-right:3px;

0 commit comments

Comments
 (0)