PluginProbe
FormFacade – Embed Google Forms in your website / 2.0
FormFacade – Embed Google Forms in your website v2.0
trunk 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 2.0
formfacade / assets / css / style.css

style.css in FormFacade – Embed Google Forms in your website 2.0, at assets/css/style.css

79 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .animation-content { display:flex; justify-content: center;}
2 .logo { width: 50px; }
3 body {
4 font-family: 'Onest', 'Inter', sans-serif;
5 margin: 0;
6 padding: 0;
7 display: flex;
8 flex-direction: column;
9 align-items: center;
10 justify-content: center;
11 background-color: #f5f5f5;
12 color: #333;
13 }
14 .header {
15 background-color: #fff;
16 width: 100%;
17 padding: 20px 0;
18 display: flex;
19 align-items: center;
20 justify-content: center;
21 border-bottom: 1px solid #eee;
22 }
23 .header img {
24 height: 30px;
25 }
26 .content {
27 text-align: center;
28 margin: 0px 0px;
29 }
30 .content h1 {
31 font-size: 2em;
32 margin-bottom: 20px;
33 }
34 .content p {
35 font-size: 1.2em;
36 margin-bottom: 40px;
37 }
38 .content .button {
39 display: inline-block;
40 padding: 12px 32px;
41 font-size: 16px;
42 line-height: 1.5;
43 font-weight: 600;
44 text-decoration: none;
45 background-color: #5D33FB;
46 color: #fff;
47 border: none;
48 border-radius: 8px;
49 cursor: pointer;
50 transition: background-color 0.15s ease;
51 }
52 .content .button:hover {
53 background-color: #4726c9;
54 }
55 .images {
56 display: flex;
57 justify-content: center;
58 align-items: center;
59 gap: 20px;
60 }
61 .images img {
62 width: 300px;
63 border-radius: 10px;
64 }
65 .footer {
66 margin-top: 40px;
67 font-size: 1em;
68 color: #666;
69 }
70
71 /* Onest (with Inter fallback) for the plugin's About page UI.
72 Explicit selectors so Bootstrap's font-family does not win by specificity. */
73 .navbar-brand,
74 .content,
75 .content h1,
76 .content p,
77 .content .button {
78 font-family: 'Onest', 'Inter', sans-serif;
79 }