Skip to content

Commit eb211f2

Browse files
committed
feat(css): nouveau thème - "light"
1 parent 6004d20 commit eb211f2

1 file changed

Lines changed: 45 additions & 0 deletions

File tree

app/css/themes/light.css

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
@import "https://fonts.forge.apps.education.fr/poppins/style.css";
2+
3+
:root {
4+
--font: Poppins;
5+
--body-bg: #f6f6f6;
6+
--h1-bg: #f6f6f6;
7+
--main-bg: #fff;
8+
--main-border-color: white;
9+
--main-border-radius: 25px;
10+
--controls-bg: #fff;
11+
}
12+
main {
13+
min-height: 90vh;
14+
box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
15+
}
16+
#controls {
17+
border-color: transparent;
18+
}
19+
#input-container {
20+
border-radius: 15px;
21+
}
22+
#user-input {
23+
font-size: 0.9em;
24+
padding: 10px;
25+
}
26+
button {
27+
background: var(--color-primary);
28+
color: white;
29+
padding: 0.25em 0.75em;
30+
border: none;
31+
border-radius: 10px;
32+
}
33+
#send-button {
34+
padding: 0.5em 0.75em;
35+
}
36+
.darkmode button:hover {
37+
background-color: var(--color-primary);
38+
}
39+
footer {
40+
color: var(--color-light);
41+
}
42+
:root:not(.darkmode) footer a,
43+
:root:not(.darkmode) footer a:visited {
44+
color: var(--color-primary) !important;
45+
}

0 commit comments

Comments
 (0)