-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (79 loc) · 1.44 KB
/
Copy pathstyle.css
File metadata and controls
100 lines (79 loc) · 1.44 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
body{
background-image: url(background-image.png);
background-color: blueviolet;
font-family: Garamond, serif;
}
.column {
flex: 50%;
padding: 10px;
height: 300px;
border: 1px solid rgb(245, 241, 241);
}
.row{
display: flex;
}
.left {
width: 25%;
}
.right {
width: 75%;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
table, td {
border: 1px solid rgb(245, 241, 241);
margin-left: auto;
margin-right: auto
}
tr,td{
width:2000px;
text-align: center;
}
#myButton{
background-color: orange;
display: flex;
justify-content: center;
}
#submit{
background-color: orange;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.form-center {
display:flex;
justify-content: center;
text-align: center;
}
hr{
border-top: 1px dotted white;
}
.float-left submit-button{
border: 1px solid coral;
height: 40vh;
width: 50vw;
}
textarea {
width: 100%;
height: 150px;
padding: 12px 20px;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
background-color: #f8f8f8;
font-size: 16px;
resize: none;
}
a{
display:flex;
justify-content: center;}
#a{
background-color: orange;
}