/*
Theme Name: Toujours Childtheme
Theme URI: https://wordpress.com/themes/toujours/
Description: Toujours has a simple, elegant design that's perfect for planning and sharing moments from your wedding. The theme highlights your content with a slideshow, large featured images, and a unique layout for recent posts.
Version: 1.1.0
Template: toujours
Author: Automattic
Author URI: http://automattic.com/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: toujours
Tags: custom-background, custom-colors, custom-menu, editor-style, featured-images, one-column, post-formats, right-sidebar, rtl-language-support, sticky-post, theme-options, translation-ready
*/

@import url("../toujours/style.css");

/*-----------------------------
Making WordPress Contact Form 7 Plugin form responsive and full width with CSS customization
Add this code snippet to your WordPress theme's style.css file.
-------------------------------*/

div.wpcf7 .wpcf7-form-control {

    max-width: 95%;

}

 

/* Make Contact Form 7 Select Dropdown field responsive & full width */

.wpcf7 select { 

    background-color: #fff;

    border: 1px solid #ccc;

    border-radius: 3px;

    margin: 0;

    padding: 4px;

    text-indent: 0px;

    width: 100%;

    z-index: 100;

}

/* Make Contact Form 7 text field full width & responsive */

.wpcf7-text {

    width: 100%;

}

 

/* Some additional CSS customization to the whole Contact Form 7 form */

div.wpcf7 {

    background-color: #f5f5f5; /* Adds background color */

    border: 2px solid #eee; /* Adds a form border */

    padding:20px 10px 10px 10px;

    -webkit-border-radius: 4px; /* Making form border rounded */

    -moz-border-radius: 4px;

    border-radius: 4px;

}
