forked from peter001019/WebProgrammingProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpicture_page.css
More file actions
47 lines (43 loc) · 1012 Bytes
/
Copy pathpicture_page.css
File metadata and controls
47 lines (43 loc) · 1012 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
.submit {
background: #FE730F;
border: 1px solid #FE730F;
border-radius: 6px;
box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
box-sizing: border-box;
color: #FFFFFF;
cursor: pointer;
display: inline-block;
font-family: nunito, roboto, proxima-nova, "proxima nova", sans-serif;
font-size: 16px;
font-weight: 800;
line-height: 16px;
min-height: 40px;
outline: 0;
padding: 12px 14px;
text-align: center;
text-rendering: geometricprecision;
text-transform: none;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
vertical-align: middle;
}
.submit:hover,
.submit:active {
background-color: initial;
background-position: 0 0;
color: #FE730F;
}
.submit:active {
opacity: .5;
}
section {
display: flex;
flex-direction: column;
align-items: center;
padding-top: 70px;
height: 100%;
}
td[colspan="5"] {
text-align: center;
}