mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-03-02 21:31:41 +03:00
25 lines
736 B
CSS
25 lines
736 B
CSS
/*
|
|
* This file is part of NetSurf, http://netsurf-browser.org/
|
|
*/
|
|
|
|
/* Load base stylesheet. */
|
|
|
|
@import "default.css";
|
|
|
|
/* Apply GTK specific rules. */
|
|
|
|
input { font-size: 95%; }
|
|
input[type=button], input[type=reset], input[type=submit], button {
|
|
background-color: #ddd; border: medium outset #ddd; }
|
|
input[type=image] { background-color: transparent; color: #000; width: auto;
|
|
height: auto; border: 0; }
|
|
input[type=checkbox], input[type=radio] { font-size: 105%; }
|
|
input[type=file] { background-color: #ddd; border: medium inset #ddd;
|
|
font-style: italic; }
|
|
|
|
select { background-color: #ddd; border: medium inset #ddd; font-size: 95%; }
|
|
select:after { content: "\25bc"; border-left:4px ridge #ddd; }
|
|
|
|
textarea { font-size: 95%; }
|
|
|