-
Notifications
You must be signed in to change notification settings - Fork 4
/
stylesheet.css
118 lines (90 loc) · 1.21 KB
/
stylesheet.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
112
html{
font-size: 10px;
}
h1, h4,
#prev,
#next,
#user-input{
font-family: 'Sedgwick Ave Display', cursive;;
text-align: center;
letter-spacing: -1px;
}
h1{
font-size: 8rem;
font-weight: 100;
margin: 2rem 0;
}
h4,
#prev,
#next{
display: inline-flex;
font-size: 3rem;
font-weight: 100;
}
#current-date:hover{
cursor: pointer;
}
#user-input{
display: inline-flex;
font-size: 1.9rem;
margin-left: 50px;
color: white;
}
#prev{
margin-right: 10px;
}
#next{
margin-left: 10px;
}
#sub-title{
text-align: center;
margin-bottom: 2rem;
}
#prev button,
#next button{
color: white;
border: 1px solid;
border-radius: 50%;
}
.card{
text-align: center;
margin-bottom: 5px;
}
.card-body .btn{
width: 100%;
}
img{
width: 360px;
height: 140px;
}
.google-blue{
background-color: #4285f4;
}
.google-green{
background-color: #34a853;
}
.google-yellow{
background-color: #fbbc05;
}
.google-red{
background-color: #ea4335;
}
span.google-blue{
background-color: white;
color: #4285f4;
}
span.google-green{
background-color: white;
color: #34a853;
}
span.google-yellow{
background-color: white;
color: #fbbc05;
}
span.google-red{
background-color: white;
color: #ea4335;
}
.hide{
display: none;
}