forked from codenamejab/congressional
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
107 lines (90 loc) · 1.55 KB
/
index.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
html {
scroll-behavior: smooth;
}
.navbar {
padding: 1vh 200px 1vh 200px !important;
}
.title {
font-family: "Verdana";
padding: 10px;
}
.container-fluid {
padding-left: 40px !important;
padding-right: 40px !important;
font-family: 'Candara';
}
.gameContainer {
background-color: #66bfff;
height: 600px;
padding: 10px;
border-radius: 15px;
}
.gameContainer:hover {
cursor: pointer;
opacity: 80%;
}
.gameImage {
max-width: 100%;
max-height: 150px;
width: auto;
height: auto;
border-radius: 15px;
}
.gameName {
padding: 5px;
}
.gameDescription {
padding: 5px;
}
hr {
border: none !important;
height: 2px !important;
background-color: black;
}
.personImgBox {
background-color: #66bfff;
height: 600px;
}
.personImg {
padding: 20px;
max-width: 100%;
max-height: 100%;
}
footer {
margin-top: 200px;
color: white;
background-color: #007bff !important;
}
.footer-link {
color: white;
}
.canvas {
border-radius: 5%;
border: 2px solid black;
}
.instructions {
border: 1px solid black;
background-color: #ff7738;
padding: 10px;
height: 600px;
border-radius: 2rem;
}
#ans {
width: 50%;
font-size: 1rem;
padding: .375rem .75rem;
line-height: 1.5;
color: #495057;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
border-radius: .25rem;
transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}
#ans:focus {
color: #495057;
background-color: #fff;
border-color: #80bdff;
outline: 0;
box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}