-
Notifications
You must be signed in to change notification settings - Fork 0
/
finalStyle.css
108 lines (93 loc) · 1.67 KB
/
finalStyle.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
body{
background-color: #2C4770;
}
canvas{
border: 3px solid #000;
background-image: url("http://webbox.cs.du.edu/~jushughe/FinalProject/images/cardtable.png");
}
input {
border: 2px solid #00b13F;
border-radius: 10px;
height: 30px;
width: 125px;
padding-left: 10px;
background-color: #E1E1E1;
}
label{
font-size: 20px;
font-family: 'Bubblegum Sans', cursive;
letter-spacing: 3px;
color: #fff;
}
#container{ width: 1400px;
height: 800px;
margin: 0 auto;
}
#header{}
#content{
width: 1200px;
height: 700px;
margin: 0 auto;
}
#buttons{
margin: 20px 0;
}
.animate
{
transition: all 0.1s;
-webkit-transition: all 0.1s;
}
.action-button
{
position: relative;
padding: 10px 40px;
margin: 0px 10px 10px 0px;
border-radius: 10px;
font-family: 'Bubblegum Sans', cursive;
letter-spacing: 3px;
font-size: 25px;
color: #FFF;
text-decoration: none;
}
.blue
{
background-color: #3498DB;
border-bottom: 5px solid #2980B9;
text-shadow: 0px -2px #2980B9;
}
.red
{
background-color: #E74C3C;
border-bottom: 5px solid #BD3E31;
text-shadow: 0px -2px #BD3E31;
}
.green
{
background-color: #82BF56;
border-bottom: 5px solid #669644;
text-shadow: 0px -2px #669644;
}
.yellow
{
background-color: #F2CF66;
border-bottom: 5px solid #D1B358;
text-shadow: 0px -2px #D1B358;
}
.action-button:active
{
transform: translate(0px,5px);
-webkit-transform: translate(0px,5px);
border-bottom: 1px solid;
}
#errorText{
font-size: 20px;
font-family: 'Bubblegum Sans', cursive;
letter-spacing: 3px;
color: #fff;
}
.text{
font-size: 20px;
font-family: 'Bubblegum Sans', cursive;
letter-spacing: 3px;
color: #fff;
}