-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
43 lines (43 loc) · 827 Bytes
/
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
fieldset {
width: 300px;
border: 1px solid #ff0000;
border-radius: 20px;
padding: 20px;
text-align: left;
background-color: rgb(70, 59, 59);
}
legend {
background-color: #ff0000;
border: 1px solid #3204ff;
border-radius: 20px;
padding: 10px 20px;
text-align: center;
text-transform: uppercase;
color: black;
}
p {
font-weight: bolder;
font-size: larger;
}
button {
width: 300px;
border-radius: 20px;
height: 40px;
font-style: normal;
font-size: large;
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: cadetblue;
background-color: burlywood;
}
input {
width: 300px;
border-radius: 5px;
height: 20px;
font-size: 15px;
font-family: "Courier New", Courier, monospace;
font-weight: bold;
}
body {
color: rgb(177, 152, 152);
background-color: rgb(173, 60, 60);
}