aboutsummaryrefslogtreecommitdiff
path: root/www/inc/stylesheet.inc.css
blob: 94152716913637cc5849efd5388863ffd07d0a94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!--
   body {
      <?php if ($this->background) echo "background-image: url('" . $this->background . "');\n";?>
      background-color: <?php echo $this->bgcolor?>;
      font-family: <?php echo $this->font?>;
      font-size: <?php echo $this->fontsize?>;
      color: <?php echo $this->textcol?>;
   }

   a:link {
      color: <?php echo $this->link?>;
   }

   a:visited {
      color: <?php echo $this->vlink?>;
   }

   a:active {
      color: <?php echo $this->alink?>;
   }

   a:hover {
      color: <?php echo $this->hover?>;
   }

   td {
      font-family: <?php echo $this->font?>;
      font-size: <?php echo $this->fontsize?>;
   }

   input {
      font-family: <?php echo $this->font?>;
      font-size: <?php echo $this->fontsize?>;
   }
   .navigation {
      color: white;
      background-color: #808080;
      padding-top: 2px;
      padding-bottom: 3px;
      padding-left: 4px;
      padding-right: 4px;
   }

   p.exif {
      font-size: 9px;
   }

   p.navigation a {
      color: #f0f0f0;
      font-weight: bold;
      padding-top: 2px;
      padding-bottom: 2px;
      border: 0px;
      text-align: left;
   }

   p.copyright {
      clear: both;
      padding-top: 4ex;
      font-size: 9px;
      text-align: left;
      text-decoration: none;
   }

   h1 {
      letter-spacing: .5em;
   }

   img {
      /* makes really interesting stuff on nn4 ;) 
      display: inline; */
      margin: 2px;
      border-top: solid black 1px;
      border-bottom: solid black 1px;
      border-left: dotted #808080 1px;
      border-right: dotted #808080 1px;
   }

   .navigation img, div.title img {
      border: 0px;
      margin: 0px;
      text-align: left;
   }

   div.title {
      font-size: 16pt;
      font-weight: bold;
      letter-spacing: .5em;
   }

   div.title a {
      text-decoration: none;
   }
   
   p.image img {
      /* margin-left: 10px; */
      border: 0px;
      margin: 0px;
      text-align: center;
      /*
      border-bottom: 0px;
      margin-bottom: 0px;
      */
   }
   
   p.comment {
      font-size: 10px;
      text-align: justify;
      color: #606060;
      width: 640px;
      /* margin-left: 130px; */
   }

   span {
      color: black;
      font-weight: bold;
   }

   img.thumb {
      border: 1px black solid;
      margin-top: 2px;
      margin-bottom: 2px;
   }

   a:hover img.thumb {
      border: 1px white solid;
   }

   div.year {
      float: left;
      margin: 2px 1em;
   }

   div.year p {
      margin: 2px 2em;
   }

   div.year h4 {
      margin: 1em 1em 2px 1em;
   }
-->