-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
76 lines (65 loc) · 1.3 KB
/
styles.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
body{
background-image: url(swissbg.jpg);
background-size: cover;
font-family: sans-serif;
width: 100%;
}
h1{
color: #fff;
}
.header{
text-align: center;
padding-top: 10px;
}
.border{
border: 2px solid cadetblue;
background-color: cadetblue;
border-radius: 10px;
width: 50%;
margin: auto;
padding-top: 10px;
padding-bottom: 20px;
margin-top: 30px;
}
.form{
margin: auto;
padding-top: 10px;
width: 60%;
}
.form label{
color: #fff;
}
.form input[type = text], textarea {
margin: auto;
margin-top: 1pc;
margin-bottom: 1pc;
width: 100%;
border-radius: 2px;
padding: 10px 12px;
border: 1px solid #fff;
}
.form select{
margin: auto;
margin-top: 1pc;
margin-bottom: 1pc;
width: 106%;
border-radius: 2px;
padding: 10px 12px;
border: 1px solid #fff;
}
.form input[type = text]:focus{
background-color: lightblue;
}
.form input[type = submit]{
cursor: pointer;
transition: 0.7s;
padding: 10px;
border-radius: 10px;
background-color: dodgerblue;
color: #fff;
border: 2px solid dodgerblue;
}
.form input[type = submit]:hover{
background-color: lime ;
border: 2px solid lime;
}