-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.css
More file actions
62 lines (59 loc) · 980 Bytes
/
sample.css
File metadata and controls
62 lines (59 loc) · 980 Bytes
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
h1 {
color: blue;
text-align: center;
}
.intro h2 {
text-align: center;
}
.entry {
width: 400px ;
margin-left: auto ;
margin-right: auto ;
}
.divider h2 {
text-align: center;
}
.create {
width: 400px ;
margin-left: auto ;
margin-right: auto ;
}
img {
width: 100px;
height: 50px;
visibility: visible;
opacity: 0.8;
transition:
opacity 0.6s
ease-in-out 0.05s;
}
input, select, option {
display: block;
width: 80%;
height: 25px;
padding: 5px 10px;
font-family: 'Open Sans', sans-serif;
font-weight: 300;
font-size: 12px;
border: 1px solid #000;
border-radius: 4px;
-webkit-appearance: none;
}
input:disabled {
background-color: rgb(245, 245, 245);
}
label {
padding: 12px 12px 12px 0;
display: inline-block;
}
/* Style the submit button */
button {
background-color: rgb(255, 76, 80);
color: white;
margin: 10px;
padding: 12px 20px;
border: none;
border-radius: 20px;
cursor: pointer;
float: right;
}