-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (108 loc) · 1.89 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
112
body{
background-image: url("congruent_outline.png");
font-family: 'Roboto', sans-serif;
display: flex;
flex-direction: column;
text-align: center;
}
.instructions{
color: #ffdac6
}
#gif {
border-radius: 50%;
background-color: white;
height: 200px;
width: 200px;
margin: 30px auto 0px auto;
}
span{
color: rgba(134, 221, 99, 1)
}
input:focus {
outline: none; /* overrides chrome default focus outline */
}
input[type=search] {
font-size: 18px;;
border: 0;
padding: 5px;
width: 70%;
}
#searchButtons {
display: flex;
flex-direction: row;
justify-content: center;
width: 100%;
}
#searchButtons > input {
background-color: rgba(134, 221, 99, 1);
font-size: 16px;
padding: 5px 16px;
border:0;
width: 160px;
margin: 15px
}
#searchErrorMessage{
font-size: 14px;
margin-top:10px;
color: white;
}
.resultsListDiv{
margin: 20px auto;
width: 70%;
}
@media only screen and (max-width: 768px){
.resultsListDiv{
width: 100%;
}
input[type=search] {
width: 90%;
}
}
.resultDiv, .expandedDetailsDiv {
display: flex;
flex-direction: row;
justify-content: flex-start;
background-color: white;
align-items: center;
}
.resultDiv{
color: rgb(36, 36, 36);
border-left: solid 8px rgba(134, 221, 99, 1);
margin-top: 12px;
}
.resultDiv:hover {
background-color: rgba(134, 221, 99, 0.87)
}
.avatar{
height: 60px;
border-radius: 50%;
margin: 10px 15px;
}
.expandedDetailsDiv{
border-left: 8px solid #ffdac6;
border-top: 3px solid rgb(213, 213, 213)
}
.textDetailsDiv{
padding: 0 10px;
text-align: left;
min-height: 130px;
position: relative;
}
.textDetailsDiv > h3{
font-family: 'Roboto Condensed', sans-serif;
font-size: 16px;
}
.resultDiv > div, .textDetailsDiv {
word-break: break-all;
}
.languageChart{
height: 150px;
min-width: 170px;
text-align: center;
}
.languageChart > h3{
padding: 10px;
}
svg {
min-width: 150px;
}