forked from frontendpodyplomowe/git2cdv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
124 lines (97 loc) · 1.82 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
h1{
color: orange;
font-weight: bold;
border: 5px dotted salmon;
text-align: center;
}
*{
box-sizing: border-box;
}
body{
padding: 30px 30%;
}
form{
font-size: 1rem;
color: darkgray;
background-color: lightyellow;
}
form label, form legend{
width: 40%;
float: left;
}
form input {
width: 60%;
}
form div{
overflow: hidden;
/* clear: both; */
padding: 5px;
}
form > div > fieldset{
border: 0;
/* padding: 10px; */
padding: 0;
margin: 0;
}
form > div > fieldset > div > div > label {
font-size: 0.9rem;
color: black;
padding-left: 0.6rem;
}
form textarea{
width: 100%;
}
/* form/div[6]/div */
form > div > div {
padding-left:0;
}
form > div > fieldset > div > div > input{
width: auto;
float: left;
/* margin-left: 0; */
}
/* xpath full path */
/* /html/body/div/form/div[7]/fieldset/div/div[1] */
form > div > fieldset > div > div {
padding: 0;
}
.cities > div > input {
width: auto;
float: left;
}
form input:focus{
border: 3px solid orange;
}
form input, textarea{
background-color: yellow;
}
#sendForm{
background-color:red;
font-weight: bold;
font-size: 1.5rem;
width: 100px;
height: 40px;
display: block;
margin: 0 auto;
}
#sendForm:hover{
transition: border 2s ease-in-out, background-color 2s ease-in-out, color 1s ease-in, border-radius 2s ease-in-out;
border: 3px solid darkorange;
background-color: pink;
color: white;
border-radius: 5px;
}
#field3:hover, #field2:hover, #field1:hover {
background-color: peru;
#field2 {
padding-left: 7px;
background-color: #F3E5F5;
border: none;
border-radius: 10px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
letter-spacing: 3px;
}
#field2:focus {
background-color: #E1BEE7;
}
}