forked from mary-emma/salary-negotiation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchatbot.css
107 lines (94 loc) · 1.75 KB
/
chatbot.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
:root {
--color-bg: #69F7BE;
--color-text-main: #000000;
--color-primary: #FFFF00;
--wrapper-height: 87vh;
--image-max-width: 300px;
--image-margin: 3rem;
--font-family: "HK Grotesk";
--font-family-header: "HK Grotesk";
}
iframe {
height: 400px;
width: 1000px;
color: white;
}
.custom-button {
background-color: #015366;
border: none;
color: white;
padding: 10px 20px;
border-radius: 20px;
cursor: pointer;
font-size: 16px;
}
.custom-button:hover {
background-color: #165171;
}
.tableHeader {
font-weight: bold;
color: #033540;
}
* {
box-sizing: border-box;
}
[hidden] {
display: none !important;
}
@font-face {
font-family: HK Grotesk;
src: url("https://cdn.glitch.me/605e2a51-d45f-4d87-a285-9410ad350515%2FHKGrotesk-Regular.otf?v=1603136326027")
format("opentype");
}
@font-face {
font-family: HK Grotesk;
font-weight: bold;
src: url("https://cdn.glitch.me/605e2a51-d45f-4d87-a285-9410ad350515%2FHKGrotesk-Bold.otf?v=1603136323437")
format("opentype");
}
.footer {
display: flex;
justify-content: space-between;
margin: 1rem auto 0;
padding: 1rem 0 0.75rem 0;
width: 100%;
flex-wrap: wrap;
border-top: 4px solid #fff;
flex-shrink: 0;
}
.divider {
padding: 0 1rem;
}
body {
font-family: HK Grotesk;
background-color: #A7D1D2;
}
.wrapper {
min-height: 100%;
padding-top: 25px;
display: grid;
place-items: center;
margin: 0 1rem;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.chatbot {
margin: 1rem auto 0;
}
.title {
color: #033540;
font-family: HK Grotesk;
font-style: normal;
font-weight: bold;
font-size: 55px;
line-height: 105%;
margin: 0;
}
/* Subheading */
h2 {
color: #033540;
}