other/train-to-cloud-city/app/client/src/App.css (33 lines of code) (raw):
/**
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
:root {
--font: "Pixelify Sans";
--melanzane: #211e20;
--smoky: #555568;
--lemonGrass: #a0a08b;
--lilyWhite: #e9efec;
--darkOrange: #ff8100;
--cinnabar: #e94434;
--dodgerblue: #4286f5;
--selectiveyellow: #fbbb06;
--eucalyptus: #34a752;
--font: "Pixelify Sans", sans-serif;
}
button,
.buttonStyle {
padding: 10px;
margin: 5px;
font-family: var(--font);
font-size: larger;
background: var(--selectiveyellow);
border: 3px solid var(--melanzane);
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
body {
background-color: var(--lilyWhite);
color: var(--melanzane);
font-family: "Pixelify Sans", sans-serif;
font-optical-sizing: auto;
margin: 0;
}