-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (49 loc) · 1.04 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
#h1 {
text-align: center;
color: white;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
}
.square {
float: left;
width: 30%;
height: 0;
padding-bottom: 30%;
background-color: white;
margin: 1.66%;
border-radius: 15pt;
transition-duration: 0.6s;
}
.container {
max-width: 600px;
}
#stripe {
background-color: white;
height: 30px;
text-align: center;
border-radius: 4px;
}
.selected {
background-color: tomato;
}
button{
background-color: inherit;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
height: 100%;
outline: none;
border: none;
transition: all 0.4s;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif }
button:hover{
color: white;
background: yellowgreen
}
#message{
display: inline-block;
width: 15%;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
color: black;
}