mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-05 05:55:46 +00:00
54 lines
898 B
CSS
Executable File
54 lines
898 B
CSS
Executable File
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
html, body, #app {
|
|
font-family: sans-serif;
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
|
|
.section {
|
|
position: absolute;
|
|
width: 33%;
|
|
height: 100%;
|
|
padding: 0px;
|
|
border: 1px solid #D5DCDE;
|
|
border-right: 0;
|
|
}
|
|
|
|
.section.first {
|
|
}
|
|
|
|
.section.second {
|
|
margin-left: 33%;
|
|
}
|
|
|
|
.section.third {
|
|
margin-left: 66%;
|
|
}
|
|
|
|
.section-caption {
|
|
display: block;
|
|
text-align: center;
|
|
padding: 20px;
|
|
font-size: 200%;
|
|
font-weight: bold;
|
|
border-bottom: 1px solid #D5DCDE;
|
|
}
|
|
|
|
.section-content-container {
|
|
padding: 10px;
|
|
padding-top: 25px;
|
|
}
|
|
|
|
.section-content {
|
|
}
|