forked from Azure-Samples/php-docs-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS.css
More file actions
86 lines (74 loc) · 1.16 KB
/
CSS.css
File metadata and controls
86 lines (74 loc) · 1.16 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
html {
background-color: blanchedalmond;
}
h1 {
background-color: cadetblue;
border-radius: 12px;
padding: 16px;
}
hr {
margin: 16px;
}
.messages {
font-size: 12pt;
border: 0px;
border-radius: 12px;
width: 75%;
background-color:aquamarine;
padding: 8px;
}
.text {
border: 0px;
border-radius: 12px;
padding: 8px;
margin: 8px;
background-color: aliceblue;
}
h3 {
margin-right: 16px;
}
input {
border: 0px;
border-radius: 12px;
margin: 4px 8px 4px 8px;
}
.messagebox {
width: 80%;
}
.namebox {
width: 90%;
}
.send {
width: 100px;
}
form {
display: flex;
padding: 12px;
background-color: cornflowerblue;
width: 1000;
border: 0px;
border-radius: 12px;
padding: 8px;
margin: 4px;
}
.messagediv {
display: flex;
padding: 12px;
width: 90%;
float: right;
border: 0px;
border-radius: 12px;
padding: 8px;
margin: 4px;
margin-bottom: 32px;
}
.namediv {
display: flex;
padding: 12px;
width: 90%;
border: 0px;
border-radius: 12px;
padding: 8px;
margin: 4px;
background-color: cornflowerblue;
}