-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles-4.css
More file actions
100 lines (86 loc) · 1.89 KB
/
styles-4.css
File metadata and controls
100 lines (86 loc) · 1.89 KB
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
/* styles.css */
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f1f1f1;
}
header {
background-color: #333;
color: white;
text-align: center;
padding: 10px;
}
.container, .container2 {
max-width: 600px;
margin: 20px auto;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.usernameAndPass,
.chatBox,
.toRetrieve {
margin-bottom: 15px;
}
label {
display: block;
margin-bottom: 5px;
}
input[type="text"], input[type = 'password'],
button {
width: 100%;
padding: 10px;
margin-bottom: 10px;
box-sizing: border-box;
}
button {
background-color: #4caf50;
color: white;
border: none;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
}
.responseBox {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#warning {
color: red;
font-weight: bold;
text-align:center;
}
.toRetrieve {
display: flex;
justify-content: space-between;
align-items: center;
}
button {
width: auto; /* Allow button to take up its content width */
margin-left: 10px; /* Add some spacing between input and button */
}
.responseBox {
min-height: 50px; /* Set a minimum height */
resize: vertical; /* Allow vertical resizing */
overflow: auto; /* Show scrollbar when content exceeds box height */
min-height:150px;
}
@media only screen and (max-width: 600px) {
.container,
.responseBox,
.chatBox {
max-width: 90%; /* Adjust maximum width for smaller screens */
}
}
#chatbox {
width : 100%;
min-height:150px;
}