From 5163436b00711318baea4fc0ad43a4de8222354a Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Sun, 14 May 2017 00:37:16 +0300 Subject: Implement builds page --- www/builds-body.css | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 www/builds-body.css (limited to 'www/builds-body.css') diff --git a/www/builds-body.css b/www/builds-body.css new file mode 100644 index 0000000..67ed9a3 --- /dev/null +++ b/www/builds-body.css @@ -0,0 +1,44 @@ +/* + * Build count. + */ +#count +{ + font-size: 1.32em; + line-height: 1.4em; + color: #555; + + margin: 1.2em 0 0 0; +} + +/* + * Version table. + */ +.build +{ + margin-top: .8em; + margin-bottom: .8em; + + padding-top: .4em; + padding-bottom: .4em; +} +.build:nth-child(even) {background-color: rgba(0, 0, 0, 0.07);} + +.build th {width: 6.4em;} + +.build tr.name td .value, +.build tr.version td .value, +.build tr.config td .value, +.build tr.toolchain td .value, +.build tr.machine td .value, +.build tr.target td .value, +.build tr.result td .value +{ + /* style. */ + font-family: monospace; + font-size: 0.94em; +} + +.build .warning {color: #ffa500;} +.build .error {color: #ff0000;} +.build .abort {color: #ff0000;} +.build .abnormal {color: #ff0000;} -- cgit v1.1