-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (75 loc) · 1.32 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
body {
position: relative;
width: auto;
height: 100%;
font-family: Arial, Helvetica, sans-serif;
background-color:goldenrod;
color: aliceblue;
}
h2 {
font-family: 'Courier New', Courier, monospace;
text-align: center;
font-size: xx-large;
}
#div1 {
position: relative;
top: 30px;
left: 30%;
margin: 20px;
padding: 23px;
height: 50%;
width: 370px;
border-radius: 10px;
background-color: rgb(224, 236, 161);
color: rgb(0, 0, 0);
}
.input_sec {
position: relative;
top: auto;
left: 150px;
margin-top: 10px;
border: 1px solid transparent;
border-radius: 5px;
padding: 5px;
}
.input_sec:hover,
.input_sec:focus {
background: #e5f6f2;
outline: none;
font-weight: 200;
}
.let {
position: absolute;
top: auto;
margin: 15px;
left: 15px;
}
button {
width: 100px;
height: 40px;
margin: 35px 40px;
border: none;
border-radius: 5px;
font-size: medium;
cursor: pointer;
opacity: 0.9;
}
#cancelbtn {
background-color: red;
}
#submitbtn {
background-color: #04AA6D;
}
button:hover {
color: white;
opacity: 0.7;
}
button:focus {
background-color: rgb(134, 143, 119);
}
@media screen and (max-width: 300px) {
.cancelbtn,
.submitbtn {
width: 100%;
}
}