-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle.css
111 lines (86 loc) · 1.48 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
body{
background-color: #82a7af ;
font-family: 'Nerko One', cursive;
color: #231662 ;
margin-left: 3em;
margin-right: 3em;
}
h1{
font-family: 'Oswald', sans-serif;
color: #e2d818 ;
}
#screen, #account, #amount{
width: 90%;
height:90%;
background-color: #242B6D ;
font-family: 'Press Start 2P', cursive;
color:#68FF00 ;
font-size: 1.2em;
border-radius: .25em;
opacity: .8;
animation: twinkle .5s infinite;
line-height: 2em;
}
p{
font-size: 1.8em;
}
#instructions{
margin-left: 4.5em;
margin-right: 4.5em;
}
button, #sendInfo{
background-color: #242B6D ;
color: #68FF00 ;
font-family: 'Press Start 2P', cursive;
font-size: 1.2em;
}
label{
animation: flash .75s infinite;
font-size: 1.2em;
}
@keyframes flash{
0%{ color:#242B6D;}
50% { color: 68FF00;}
}
@keyframes twinkle{
0%{ opacity: .85;}
25%{opacity: .8;}
50%{opacity: .85;}
75%{ opacity: .9;}
}
#foreground{
background-color: #678991;
width: 90%
}
.fa {
padding: 20px;
font-size: 30px;
width: 30px;
text-align: center;
text-decoration: none;
margin: 5px 2px;
border-radius: 1em;
}
.fa:hover {
opacity: 0.7;
}
.fa-facebook {
background-color: #242B6D ;
color:#eff9ff ;
}
.fa-twitter {
background-color: #242B6D ;
color:#eff9ff ;
}
.fa-linkedin {
background-color: #242B6D ;
color:#eff9ff ;
}
.fa-youtube {
background-color: #242B6D ;
color:#eff9ff ;
}
.fa-instagram {
background: #242B6D;
color: #eff9ff;
}