JSFiddle - React, Tailwind, and code Playground
by Durtto
HTML
<link rel="stylesheet" href="http://cdn.sencha.io/try/extjs/4.1.1/resources/css/ext-all-gray.css">
<div id="test"></div>
CSS
.biggertext {
font-size: 70px;
}
JavaScript
Ext.create('Ext.form.Panel', {
renderTo: 'test',
width: 175,
height: 120,
bodyPadding: 10,
title: 'Final Score',
items: [{
xtype: 'displayfield',
fieldLabel: 'Home',
name: 'home_score',
value: '10',
labelCls: 'biggertext'
}, {
xtype: 'displayfield',
fieldLabel: 'Visitor',
name: 'visitor_score',
value: '11'
}],
buttons: [{
text: 'Update'
}]
});