Sergidev commited on
Commit
61cd40a
1 Parent(s): db59177

Delete style.css

Browse files
Files changed (1) hide show
  1. style.css +0 -141
style.css DELETED
@@ -1,141 +0,0 @@
1
- body {
2
- font-family: Arial, sans-serif;
3
- margin: 0;
4
- padding: 20px;
5
- background: linear-gradient(to bottom right, #222222, #333333);
6
- height: calc(100vh - 40px);
7
- display: flex;
8
- flex-direction: column;
9
- }
10
-
11
- h1 {
12
- text-align: center;
13
- margin-bottom: 20px;
14
- color: #f0f8ff;
15
- text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
16
- }
17
-
18
- #chat-container {
19
- border: 1px solid #ccc;
20
- border-radius: 5px;
21
- padding: 10px;
22
- margin-bottom: 20px;
23
- flex: 1;
24
- overflow-y: scroll;
25
- background-color: #1e1e1e;
26
- color: #f0f8ff;
27
- text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
28
- }
29
-
30
- .message {
31
- margin: 5px 0;
32
- padding: 8px;
33
- border-radius: 5px;
34
- max-width: 80%;
35
- white-space: pre-wrap;
36
- }
37
-
38
- .user-message {
39
- background-color: #59788E;
40
- color: white;
41
- align-self: flex-end;
42
- margin-left: auto;
43
- margin-right: 10px;
44
- }
45
-
46
- .bot-message {
47
- background-color: #2c3e4c;
48
- color: white;
49
- align-self: flex-start;
50
- margin-right: auto;
51
- }
52
-
53
- #chat-form {
54
- display: flex;
55
- margin-top: auto;
56
- margin-bottom: 20px;
57
- }
58
-
59
- #user-input {
60
- flex-grow: 1;
61
- padding: 10px;
62
- font-size: 16px;
63
- border: none;
64
- border-radius: 5px;
65
- }
66
-
67
- button {
68
- padding: 10px;
69
- font-size: 16px;
70
- background-color: #59788E;
71
- color: white;
72
- border: none;
73
- border-radius: 5px;
74
- cursor: pointer;
75
- margin-left: 10px;
76
- }
77
-
78
- button:hover {
79
- background-color: #45a049;
80
- }
81
-
82
- .icon {
83
- margin-right: 5px;
84
- }
85
-
86
- #loading-message {
87
- margin-top: 10px;
88
- color: #00ff00;
89
- font-style: italic;
90
- }
91
-
92
- .switch {
93
- position: relative;
94
- display: inline-block;
95
- width: 60px;
96
- height: 34px;
97
- margin-bottom: 10px;
98
- }
99
-
100
- .switch input {
101
- opacity: 0;
102
- width: 0;
103
- height: 0;
104
- }
105
-
106
- .slider {
107
- position: absolute;
108
- cursor: pointer;
109
- top: 0;
110
- left: 0;
111
- right: 0;
112
- bottom: 0;
113
- background-color: #ccc;
114
- transition: .4s;
115
- border-radius: 34px;
116
- }
117
-
118
- .slider:before {
119
- position: absolute;
120
- content: "";
121
- height: 26px;
122
- width: 26px;
123
- left: 4px;
124
- bottom: 4px;
125
- background-color: white;
126
- transition: .4s;
127
- border-radius: 50%;
128
- }
129
-
130
- input:checked + .slider {
131
- background-color: #59788E;
132
- }
133
-
134
- input:checked + .slider:before {
135
- transform: translateX(26px);
136
- }
137
-
138
- .mode-label {
139
- margin-left: 10px;
140
- color: #f0f8ff;
141
- }