diff options
author | CharlyCoste <contact@ccoste.fr> | 2010-03-14 01:33:49 +0100 |
---|---|---|
committer | CharlyCoste <contact@ccoste.fr> | 2010-03-14 01:33:49 +0100 |
commit | 3984607ef5f7af3c00449bbc5a0f587ef9e25b60 (patch) | |
tree | 196615372f2014a4e06302e25b5d27d491dc0f02 /css | |
parent | df612293fd8c70407843a76a5c73ff8530528a73 (diff) | |
download | nextcloud-server-3984607ef5f7af3c00449bbc5a0f587ef9e25b60.tar.gz nextcloud-server-3984607ef5f7af3c00449bbc5a0f587ef9e25b60.zip |
center is not a valid strict xhtml1.0 tag (not semantic). At least, replacing it by a div with "center" class.
Diffstat (limited to 'css')
-rwxr-xr-x | css/default.css | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/css/default.css b/css/default.css index 7cc4aaa794c..61d61bb2207 100755 --- a/css/default.css +++ b/css/default.css @@ -2,6 +2,28 @@ body {background-color: #F9F9F9;} body.error {background-color: #F0F0F0;} body,th,td,ul,li,a,div,p,pre {color:#333333; font-family:Verdana,"Bitstream Vera Sans",Arial,Helvetica,Sans,"Bitstream Vera Serif"; font-size:9.0pt;} +.center { + text-align:center; +} + +.center * { + margin-left:auto; + margin-right:auto; +} + +a#owncloud-logo { + margin-left:auto; + margin-right:auto; + display:block; + width:200px; + height:99px; + background: transparent url(/img/owncloud-logo-small.png) no-repeat scroll 0 0; +} + +a#owncloud-logo span { + display:none; +} + .nametext a {color:#333333; font-size:8pt; font-weight:bold; text-decoration:none;} .highlighttext {color:#333333; font-size:9pt; font-weight:bold; text-decoration:none;} .datetext {color:#333333; font-size:7pt;} |