diff options
author | arf20 <aruizfernandez05@gmail.com> | 2024-02-25 14:09:08 +0100 |
---|---|---|
committer | arf20 <aruizfernandez05@gmail.com> | 2024-02-25 14:09:08 +0100 |
commit | eeef9373b80022ec3be4a48b01fcabf13192db6e (patch) | |
tree | 663da1c021199c37be6bd20e07172c500e9a5f46 /about/about.css | |
parent | ae085f49f81015e1103f9a54792674f690fef97e (diff) | |
download | arfnet2-web-eeef9373b80022ec3be4a48b01fcabf13192db6e.tar.gz arfnet2-web-eeef9373b80022ec3be4a48b01fcabf13192db6e.zip |
Add arfnet2 to about
Diffstat (limited to 'about/about.css')
-rw-r--r-- | about/about.css | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/about/about.css b/about/about.css new file mode 100644 index 0000000..5af0aeb --- /dev/null +++ b/about/about.css @@ -0,0 +1,81 @@ +.verticaltext { + text-align: center; + writing-mode: vertical-rl; + transform: rotate(180deg); +} + +.row { + display: flex; +} + +.col { + flex: 33%; + padding: 40px; +} + +.col2 { + float: left; + width: 100%; +} + +.text { + margin-left: 20px; +} + +.invisibletd { + padding-left: 20px; +} + +.title { + font-size: 36px; +} + +header *{ + display: inline-block; +} + +*{ + vertical-align: middle; + max-width: 100%; +} + +.pic100 { + width: 100%; +} + +.pic50 { + width: 49%; +} + +.pic2 { + width: calc(100% / 3); +} + +.img { + margin-bottom: 10px; +} + +.div { + margin: auto; + max-width: 1024px; +} + +.aecenter { + text-align: center; + display: flex; + justify-content: space-between; +} + +p, li { + font-size: 20px; +} + +@media only screen and (max-width: 600px) { + .div { + width: 100%; + } +} + +table, th, td { + border: 1px solid black; +} |