-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (60 loc) · 1.16 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
body{
/* background-color: rgb(237, 200, 100); */
background-image: url("/TASK 03/coverpic.jpg");
background-size:cover;
}
h1{
font-size: 35px;
font-family: monospace;
padding: 10px;
margin-left: 25px;
margin-bottom: 50px;
}
label{
font-family: monospace;
font-size: large;
}
.wrapper{
width: 500px;
background-color: rgb(243, 190, 190);
/* background-color: transparent; */
padding: 70px 40px;
position: absolute;
transform: translate(-50%, -50%);
left: 50%;
top: 50%;
box-shadow: 0 20px 25px rgba(0,0,0,0.5);
border-radius: 8px;
}
.input{
border-radius: 5px;
border: 2px solid blue;
outline: none;
padding: 5px;
margin-left: 20px;
}
select{
border-radius: 5px;
border: 2px solid blue;
outline: none;
margin-bottom: 20px;
padding: 5px;
}
.submit{
border-radius: 5px;
border: 2px solid blue;
outline: none;
background-color: transparent;
padding: 6px;
margin-bottom: 20px;
font-family: monospace;
}
.submit:hover{
background-color: blue;
color: white;
}
.output{
font-size: large;
font-family: monospace;
color: red;
}