-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (49 loc) · 1.42 KB
/
style.css
File metadata and controls
50 lines (49 loc) · 1.42 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
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100&display=swap');
a {
text-decoration:none;
color:black
}
font {
font-family: 'Noto Sans TC', sans-serif;
font-size:35px
}
input,button {
font-family: 'Noto Sans TC', sans-serif;
font-size:80px:
width:200px;
height:45px;
border-radius:5px;
}
button {
border:0px #FFFFFF solid;
}
.button {
display: inline-block;
text-align: center;
vertical-align: middle;
padding: 9px 21px;
border: 0px solid #a12727;
border-radius: 8px;
background: #d99e82;
background: -webkit-gradient(linear, left top, left bottom, from(#d99e82), to(#d99e82));
background: -moz-linear-gradient(top, #d99e82, #d99e82);
background: linear-gradient(to bottom, #d99e82, #d99e82);
font: normal normal bold 20px arial;
color: #ffffff;
text-decoration: none;
}
.button:hover,
.button:focus {
background: #ffbe9c;
background: -webkit-gradient(linear, left top, left bottom, from(#ffbe9c), to(#ffbe9c));
background: -moz-linear-gradient(top, #ffbe9c, #ffbe9c);
background: linear-gradient(to bottom, #ffbe9c, #ffbe9c);
color: #ffffff;
text-decoration: none;
}
.button:active {
background: #825f4e;
background: -webkit-gradient(linear, left top, left bottom, from(#825f4e), to(#d99e82));
background: -moz-linear-gradient(top, #825f4e, #d99e82);
background: linear-gradient(to bottom, #825f4e, #d99e82);
}