-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (72 loc) · 1.24 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
*
{
box-sizing: border-box;
}
body
{
background-color: whitesmoke;
text-align:center;
justify-content: center;
font-family:Verdana, Geneva, Tahoma, sans-serif;
font-size:medium;
color: gray;
}
h1
{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
input
{ padding: 6px 6px;
margin: 7px;
border: 1px;
border-color: white;
border-radius: 4px;
}
.button1
{
background-color: gray;
border-radius: 10px;
color: #e6e6e6;
padding: 10px 10px;
text-align: right;
}
.button1:hover
{
background-color: black;
color: white;
cursor: pointer;
}
.button1:active
{
background-color: brown;
color: aquamarine;
font-size: medium;
text-decoration: solid;
}
.fpin
{
font-size: small;
text-decoration: none;
color: gray;
}
.fpin:hover
{
text-decoration:underline;
color: gray;
}
.fpin:active
{
font-size: medium;
text-decoration: none;
color: black;
}
.card
{
display:inline-block;
justify-content: center;
background-color: #d9d9d9 ;
border-radius: 10px;
padding: 2px 16px;
width: 300px;
height: 350px;
}