123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- *,
- *::before,
- *::after {
- box-sizing: border-box;
- }
- a {
- text-decoration: none;
- }
- /* THE ALL SITE */
- .wrapper {
- display: flex;
- flex-direction: column;
- /* width: 100%; */
- width: 1920px;
- min-height: 100vh;
- }
- /* THE ALL SITE */
- /* HEADER */
- .header {
- /* height: 100px; */
- display: flex;
- justify-content: space-around;
- align-items: center;
- }
- .nav-left {
- margin-left: 447px;
- }
- .nav-right {
- margin-right: 511px;
- }
- .menu-box{
- padding: 40px 0 43px;
- }
- .menu-box> li {
- display: inline;
- }
- .menu-box>li > a {
- color: #555555;
- padding: 0 13px;
- font-family: "Open Sans", sans-serif;
- font-weight: bold;
- font-size: 14px;
- }
- .link {
- position: relative;
- }
- .menu-box .active {
- color: #5363db;
- }
- .active:after {
- content: "";
- display: block;
- width: 30px;
- height: 1px;
- background: #5363db;
- position: absolute;
- top: 100%;
- left: 32%;
- margin-top: 2px;
- }
- .logo {
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 3px 0 2px 0;
- }
- .logo > h1 {
- font-family: "Champagne & Limousines", sans-serif;
- font-weight: bold;
- font-size: 24px;
- color: #6a78e0;
- padding: 5px 0 0 3px ;
- letter-spacing: 2px;
- }
- /* HEADER */
- /* MAIN */
- .main {
- flex-grow: 1;
- }
- .content {
- position: relative;
- }
- .main-fon {
- width: 100%;
- }
- .form {
- position: absolute;
- background: white;
- border-radius: 20px;
- height: auto;
- top: 100px;
- left: 615px;
- display: flex;
- flex-direction: column;
- /* justify-content: center; */
- align-content: center;
- }
- .form>p{
- color: #5363db;
- font-family: "Open Sans", sans-serif;font-weight: bold;
- font-size: 25.64px;
- margin: 38px 140px 13px 34px;
- }
- .form>input{
- margin: 17px 0 0 30px;
- padding: 0 8px;
- /* width: 230px; */
- height: 50px;
- font-size: 14px;
- font-family: 'Open Sans', sans-serif;
- background: #f2f2f2;
- border-radius: 8px;
- word-spacing: -1px;
- border: 1px #f2f2f2 solid;
- }
- /* input:nth-child(4):after{
- content: '56';
- background: red;
- } */
- .form-link{
- background: #475bf1;
- border-radius: 8px;
- color: white;
- width: 170px;
- /* height: 50px; */
- text-align: center;
- word-spacing: 2px;
- padding: 16px 0;
- margin: 30px 0 35px 95px;
- font-family: "Open Sans", sans-serif;
- font-weight: bold;
- font-size: 16px;
- }
- /* .form>select{
- width: 15px;
- left: 205px;
- bottom: 115px;
- border: 1px #f2f2f2 solid;
- background: #f2f2f2;
- position: absolute;
- }*/
- .text-on-fone{
- position: absolute;
- top: 158px;
- right: 430px;
- word-spacing: 3px;
- color: white;
-
- }
- .text-on-fone>h1{
- font-size: 48px;
- text-transform: uppercase;
- font-family: "Open Sans", sans-serif;
- font-weight: bold;
- line-height: 1.45;
- margin-bottom: 20px;
- }
- .text-on-fone>p{
- font-size: 40px;
- padding-top: 10px;
- word-spacing: 18px;
- font-family: "Freestyle Script";
- line-height: 1.2;
- }
- /* MAIN */
- .footer {
- background: black;
- height: 100px;
- }
|