Skip to content

Commit 85fcea5

Browse files
buttons styles
1 parent dbd0aee commit 85fcea5

File tree

1 file changed

+20
-5
lines changed

1 file changed

+20
-5
lines changed

My JS projects/Project8-scrumdesk/styles.css

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ td {
8585
border: 1px solid #888;
8686
max-width: 600px;
8787
position: relative;
88-
text-align: center;
8988
}
9089
.modal-title {
9190
font-family: 'Lato', cursive;
@@ -107,14 +106,30 @@ td {
107106
.modal-content button {
108107
font-family: 'Lato', cursive;
109108
font-weight: 700;
110-
font-size: 20px;
111-
padding: 3px 10px;
109+
font-size: 25px;
110+
padding: 5px 15px;
111+
border-radius: 5px;
112112
}
113113
#btn-reset {
114-
color: red;
114+
background-color: #FCD0CC;
115+
border: 2px solid #E6A7B4;
116+
}
117+
#btn-reset:hover {
118+
background-color: #FFDEDC;
119+
}
120+
#btn-reset:active {
121+
background-color: #E6A7B4;
115122
}
116123
#btn-submit {
117-
color: #00B158;
124+
background-color: #C2E3D0;
125+
border: 2px solid #8DC174;
126+
float: right;
127+
}
128+
#btn-submit:hover {
129+
background-color: #E3F1EA;
130+
}
131+
#btn-submit:active {
132+
background-color: #8DC174;
118133
}
119134
/* The Close Button */
120135
.close {

0 commit comments

Comments
 (0)