File: style.css

package info (click to toggle)
openmolcas 25.02-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 170,204 kB
  • sloc: f90: 498,088; fortran: 139,779; python: 13,587; ansic: 5,745; sh: 745; javascript: 660; pascal: 460; perl: 325; makefile: 17
file content (35 lines) | stat: -rw-r--r-- 403 bytes parent folder | download
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
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  height: 100vh;
  display: 100vw;
}

body {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

#map {
  height: 100%;
  width: 100%;
  border-style: solid;
  border-width: 2px 0;
}

h1 {
  text-align: center;
  margin: 0.5em;
}

.foot {
  font-size: 75%;
  text-indent: 0;
  text-align: right;
  margin: 0.5em;
}