forked from larymak/Python-project-Scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.css
More file actions
85 lines (77 loc) · 1.49 KB
/
Copy pathbase.css
File metadata and controls
85 lines (77 loc) · 1.49 KB
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
.back{
/* background-color: aquamarine; */
background: url(form1.jpg) no-repeat center center fixed;
background-size: cover;
}
.back .container{
color: white;
/* position: absolute; */
top: 25%;
left: 40%;
}
.back .container-fluid h2{
font-family: 'Heebo', sans-serif;
width: 50%;
display: inline-block;
font-size: 40px;
border-bottom: 5px solid purple;
margin-bottom: 15px;
padding: 13px 0;
}
.inpstyle {
background:none;
width: 75%;
padding: 5px 10px;
font-size: 20px;
outline:none;
color: white;
}
/* .inpstyle:hover {
background-color: white;
width: 75%;
padding: 5px 10px;
font-size: 20px;
outline:none;
color: white;
} */
/* labelling design */
label{
color: blueviolet;
font-size: 25px;
}
/* Select and option tag */
#forminp select{
background: none;
width: 75%;
padding: 5px 10px;
font-size: 20px;
border: none;
outline:none;
color: white;
border: 1px solid white;
}
#forminp option{
background: none;
color: black;
}
/* Submit button */
#submitbtn{
color: white;
cursor: pointer;
outline: none;
margin: 12px 0;
padding: 10px 21px;
border: 2px solid purple;
border-radius: 10px;
font-size: 18px;
background: none;
font-weight: bold;
}
#submitbtn:hover{
opacity: 0.5;
color: whitesmoke;
background: rgb(245, 8, 8);
}
#home:hover{
color: darkred;
}