-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
114 lines (99 loc) · 1.9 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
113
114
body {
background-color: black;
font-family: "overpass", sans-serif;
}
#background {
background-color: hsl(213, 19%, 18%);
color: white;
width: 35vw;
margin: auto;
margin-top: 20vh;
margin-bottom: 20vh;
padding: 30px;
border-radius: 7%;
}
#background_thanks {
display: flex;
flex-direction: column;
align-items: center;
background-color: hsl(213, 19%, 15%);
color: white;
width: 25vw;
margin: auto;
margin-top: 20vh;
margin-bottom: 20vh;
padding: 30px;
border-radius: 7%;
}
#thanks {
color: hsl(25, 97%, 53%);
background-color: hsla(216, 12%, 54%, 0.249);
border-radius: 50px;
align-items: center;
display: flex;
justify-content: center;
height: 6vh;
width: 60%;
font-weight: bold;
padding: 0px 12px;
}
ul {
display: flex;
justify-content: space-between;
padding-inline-start: 0;
}
.logo, .ratings {
list-style-type: none;
background-color: hsla(216, 12%, 54%, 0.249);
border-radius: 50%;
align-items: center;
display: flex;
justify-content: center;
width: 4vw;
height: 6vh;
}
li {
text-decoration: none;
color: white;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50px;
}
li:hover {
background-color: hsl(25, 97%, 53%);
}
.focused {
background-color: hsl(217, 12%, 63%);
}
h1 {
font-size: 1.5em;
}
p {
font-size: 1em;
text-align: center;
}
input {
background-color: hsl(25, 97%, 53%);
color: white;
border-radius: 50px;
border-style: none;
height: 6vh;
width: 100%;
font-weight: bold;
}
span {
padding: 4px;
}
input:hover {
color: hsl(25, 97%, 53%);
background-color: white;
}
.attribution {
margin-top: 15px;
font-size: xx-small;
text-align: center;
}
.attribution a { color: hsl(228, 45%, 44%); }