-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
63 lines (58 loc) · 1.43 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
body{
font-family:helvetica;
text-align:center;
margin:100px;
background-color: #865DFF;
}
#userConverter{
padding:15px;
}
td, th, #userConverter{
padding:8px;
border: 1px solid #ddd;
margin:auto;
width:50%;
}
th{
font-size:24px;
font-style:bold;
color:#ffffff;
background-color:#0099ff;
}
tr:nth-child(even) {background-color:#ccebff;}
tr:hover {
background-color:#80ccff;
}
.ss{
background-color: #E3DFFD;
width:50%;
margin-left:auto;
margin-right: auto;
font-family: 'Montserrat', sans-serif;
}
.btn {
background: #db14bd;
background-image: -webkit-linear-gradient(top, #db14bd, #2980b9);
background-image: -moz-linear-gradient(top, #db14bd, #2980b9);
background-image: -ms-linear-gradient(top, #db14bd, #2980b9);
background-image: -o-linear-gradient(top, #db14bd, #2980b9);
background-image: linear-gradient(to bottom, #db14bd, #2980b9);
-webkit-border-radius: 28;
-moz-border-radius: 28;
border-radius: 28px;
font-family: Arial;
color: #ffffff;
font-size: 16px;
padding: 4px 7px 3px 8px;
text-decoration: none;
margin-top:8px;
}
.btn:hover {
background: #a100f7;
background-image: -webkit-linear-gradient(top, #a100f7, #008deb);
background-image: -moz-linear-gradient(top, #a100f7, #008deb);
background-image: -ms-linear-gradient(top, #a100f7, #008deb);
background-image: -o-linear-gradient(top, #a100f7, #008deb);
background-image: linear-gradient(to bottom, #a100f7, #008deb);
text-decoration: none;
}