-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (32 loc) · 745 Bytes
/
style.css
File metadata and controls
38 lines (32 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
Theme Name: Business Pro
Theme URI: https://yourbusiness.com
Author: Affan Rajput
Author URI:https://affan-portfolio-v3.vercel.app/
Description: Custom theme for local business with booking system
Version: 1.0
*/
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
:root {
--primary: #2563eb;
--primary-dark: #1d4ed8;
--text: #1f2937;
--light: #f9fafb;
}
body {
font-family: 'Poppins', sans-serif;
color: var(--text);
}
/* Customize Bookly form */
.bookly-form {
max-width: 600px;
margin: 0 auto;
}
.bookly-form .bookly-btn {
background-color: #2563eb;
border: none;
}
.bookly-form .bookly-btn:hover {
background-color: #1d4ed8;
}