Skip to content

Commit c7b6669

Browse files
author
Frederick Thomas
authored
Create style.css
1 parent b4cb4e2 commit c7b6669

File tree

1 file changed

+76
-0
lines changed

1 file changed

+76
-0
lines changed

style.css

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
body, html {
2+
height: 50%;
3+
margin: 0;
4+
font-size: 20px;
5+
margin-top: 2px;
6+
margin-bottom: 16px;
7+
}
8+
9+
10+
.bg {
11+
/* The image used */
12+
background: url("https://sallysbakingaddiction.com/wp-content/uploads/2013/05/classic-chocolate-chip-cookies.jpg");
13+
14+
/* Full height */
15+
height: 100%;
16+
top: 50;
17+
right: 0;
18+
19+
/* Centers and scales my image smooth and professional */
20+
background-position: center;
21+
background-repeat: no-repeat;
22+
background-size: cover;
23+
}
24+
25+
26+
/* Style for my header */
27+
.h1 {
28+
font-family: "san-serif", Playfair Display, Bodoni;
29+
text-align: center;
30+
}
31+
32+
33+
/* First paragraph style */
34+
.p1 {
35+
font-family: "Gill Sans", sans-serif;
36+
text-align: center;
37+
}
38+
39+
40+
/* My query prompt style */
41+
.queryPrompt {
42+
font-family: "Fantasy", Copperplate, Papyris;
43+
text-align: center;
44+
}
45+
46+
47+
/* Query input field and button alignment */
48+
.queryIB {
49+
display: flex;
50+
flex-direction: row;
51+
justify-content: center;
52+
align-items: center;
53+
gap: 5px;
54+
}
55+
56+
57+
/* End-user query input field */
58+
.input {
59+
font-family: "Ramaraja", Helvetica;
60+
display: flex;
61+
text-align: center;
62+
width: fit-content;
63+
min-width: 150px;
64+
}
65+
66+
67+
/* My AI button style */
68+
button {
69+
background-color: black;
70+
color: white;
71+
border: none;
72+
border-radius: 50%;
73+
height: 25px;
74+
width: 25px;
75+
cursor: pointer;
76+
}

0 commit comments

Comments
 (0)