-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
120 lines (103 loc) · 2.9 KB
/
style.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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
Body {
text-align: center;
align-content: center;
font-family: Calibri, Helvetica, sans-serif;
background-color: wheat;
}
div {
align-content: center;
color: green;
margin-block: 0 auto;
display: block;
}
button{
background-color: brown;
align-self: start;;
width: 30%;
color: white;
padding: 15px;
margin: 20px 20px;
border: 2px solid black;
cursor: pointer;
}
form {
align-content: center;
/* border: 2px solid rgb(75, 71, 67); */
}
h1, h2, h3 {
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
input[type=text], input[type=email],
input[type=password], select {
width:40%;
margin: 8px 0;
padding: 12px 20px;
display: inline-block;
border: 2px solid green;
box-sizing: border-box;
}
textarea {
width: 60%;
height: 60%;
box-sizing: border-box;
border: 2px solid green;
font-family: sans-serif;
oninput: style.height;
}
button:hover {
opacity: 0.7;
}
.cancelbtn {
width: auto;
padding: 10px 18px;
margin: 10px 5px;
}
.swal-modal {
background-color: white;
border: 3px solid green;
}
.swal-title {
margin: 0px;
font-size: 20px;
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.21);
margin-bottom: 28px;
}
.swal-text {
background-color: #FEFAE3;
padding: 17px;
border: 1px solid #F0E1A1;
display: block;
margin: 22px;
text-align: center;
color: #61534e;
}
.swal-button {
text-align: center;
padding: 7px 19px;
border-radius: 2px;
background-color: purple;
font-size: 12px;
border: 1px solid #3e549a;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.3);
}
.swal-footer {
background-color: rgb(245, 248, 250);
margin-top: 32px;
border-top: 1px solid #E9EEF1;
overflow: hidden;
}
/* footer{
position: absolute;
bottom: 10;
height: 20px;
border-top-width: 2px;
border-top-style: solid;
border-top-color: purple;
} */
/*.container {
font-family: 'Courier New', Courier, monospace;
text-align: center;
align-content: center;
padding: 50px;
background-color: wheat;
}*/