-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (80 loc) · 1.87 KB
/
Copy pathstyle.css
File metadata and controls
86 lines (80 loc) · 1.87 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
.body{
background: #FFFFFF;
text-align: center;
padding: 15px;
font-weight: normal;
}
.app {
padding: 70px 25px;
background: teal;
text-align: left;
margin: auto;
width: 75%;
padding: 10px;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
flex-basis: 0;
flex-grow: 1;
max-width: 100%;
display: flex;
flex-direction: column;
}
.textarea {
padding: 25px;
height: 500px;
background: white;
text-align: left;
font-family: -BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
box-sizing: border-box;
position: relative;
width: 100%;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
flex-basis: 0;
flex-grow: 1;
max-width: 100%;
display: flex;
flex-direction: column;
}
/* Styles for the Save button */
.savebutton {
display: block;
width: 10%;
border: none;
background-color: #d8d8d8;
font-size: 16px;
cursor: pointer;
text-align: center;
margin-top: 25px;
/* Responsive styles for mobile devices */
min-width: 100px; /* Adjust the value as needed */
padding: 10px; /* Adjust the padding as needed */
}
/* Styles for the Save button when active */
.savebutton-active {
display: block;
width: 10%;
border: none;
background-color: #F4D03F;
font-size: 16px;
cursor: pointer;
text-align: center;
/* Responsive styles for mobile devices in the active state */
min-width: 100px; /* Adjust the value as needed */
padding: 10px; /* Adjust the padding as needed */
}
.datepicker{
padding: 15px 0px;
}
@media (max-width: 768px) {
.app {
padding: 10px;
}
}