-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
42 lines (32 loc) · 963 Bytes
/
styles.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
input[type=message], input[type=email], input[type=text], textarea {
width: 100%;
padding: 12px;
border: 1px solid #6eab3b;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
margin-left: 300px;
}
/* Style the submit button with a specific background color etc */
button[type=submit] {
color: #000000;
padding: 5px;
padding-left: 10px;
padding-right: 10px;
background-color: #FFFFFF;
border: 1px solid #6eab3b;
border-radius: 20px;
cursor: pointer;
font-weight: bold;
margin-left: 575px;
}
/* When moving the mouse over the submit button, add a darker green color */
button[type=submit]:hover {
background-color: #6eab3b;
}
/* Hide Streamlit Branding */
/* #MainMenu {visibility: hidden;}
footer {visibility: hidden;}
header {visibility: hidden;} */