File tree Expand file tree Collapse file tree 1 file changed +91
-0
lines changed
Expand file tree Collapse file tree 1 file changed +91
-0
lines changed Original file line number Diff line number Diff line change 1+ body {
2+ font-family : Arial, sans-serif;
3+ margin : 0 ;
4+ padding : 0 ;
5+ background-color : # f8f9fa ;
6+ color : # 333 ;
7+ }
8+
9+ /* Navbar */
10+ nav {
11+ background-color : # 343a40 ;
12+ padding : 1em ;
13+ display : flex;
14+ gap : 1em ;
15+ }
16+
17+ nav a {
18+ color : # ccc ;
19+ text-decoration : none;
20+ padding : 0.5em 1em ;
21+ border-radius : 4px ;
22+ }
23+
24+ nav a : hover ,
25+ nav a .active {
26+ background-color : # 007bff ;
27+ color : white;
28+ }
29+
30+ main {
31+ padding : 2em ;
32+ max-width : 800px ;
33+ margin : auto;
34+ }
35+
36+ /* Pricing boxes */
37+ div .pricing-box {
38+ background : white;
39+ border : 1px solid # ddd ;
40+ padding : 1.5em ;
41+ margin-bottom : 1em ;
42+ border-radius : 8px ;
43+ box-shadow : 0 2px 4px rgba (0 , 0 , 0 , 0.05 );
44+ }
45+
46+ div .pricing-box h2 {
47+ margin-top : 0 ;
48+ }
49+
50+ /* Footer */
51+ footer {
52+ text-align : center;
53+ padding : 1em ;
54+ background-color : # 343a40 ;
55+ color : # ccc ;
56+ position : relative;
57+ bottom : 0 ;
58+ width : 100% ;
59+ margin-top : 2em ;
60+ }
61+
62+ /* Form */
63+ form {
64+ background : white;
65+ padding : 1.5em ;
66+ border-radius : 8px ;
67+ border : 1px solid # ddd ;
68+ }
69+
70+ input [type = "text" ],
71+ textarea {
72+ width : 100% ;
73+ padding : 0.5em ;
74+ margin-top : 0.3em ;
75+ margin-bottom : 1em ;
76+ border : 1px solid # ccc ;
77+ border-radius : 4px ;
78+ }
79+
80+ input [type = "submit" ] {
81+ background-color : # 007bff ;
82+ color : white;
83+ padding : 0.6em 1.2em ;
84+ border : none;
85+ border-radius : 4px ;
86+ cursor : pointer;
87+ }
88+
89+ input [type = "submit" ]: hover {
90+ background-color : # 0056b3 ;
91+ }
You can’t perform that action at this time.
0 commit comments