-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyle.css
57 lines (51 loc) · 1.41 KB
/
style.css
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* Style for the body */
body {
width: 100%; /* Set the width to 100% to fill the available space */
height: auto; /* Let the height adjust based on content */
margin: 0;
padding: 20px; /* Add padding to create some space between the content and the window edge */
font-family: Arial, sans-serif;
background-color: #f2f2f2; /* Light Grey */
}
/* Style for the container */
.container {
width: 100%; /* Set the width to 100% to fill the available space */
height: auto; /* Let the height adjust based on content */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
/* Style for the title (h1) */
.title {
font-size: 32px;
font-weight: bold;
color: #007bff; /* Blue */
margin: 20px 0;
}
/* Style for the title (h1) */
.subtitle {
font-size: 26px;
font-weight: bold;
color: #007bff; /* Blue */
margin: 20px 0;
}
/* Style for the buttons */
.assistant-btn {
width: 230px;
height: 40px;
margin: 10px;
padding: 5px 10px;
font-size: 16px;
color: #ffffff; /* White */
background-color: #007bff; /* Blue */
border: none;
border-radius: 5px;
cursor: pointer;
}
.assistant-btn:hover {
background-color: #0056b3; /* Darker shade of Blue */
}
.assistant-btn:active {
background-color: #003380; /* Even darker shade of Blue */
}