-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
90 lines (75 loc) · 1.48 KB
/
styles.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
/**I mport Roboto font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
/* Apply Roboto font to the entire app */
body {
font-family: 'Roboto', sans-serif;
}
/* Style the title */
h1 {
font-size: 48px;
font-weight: 700;
color: #FFFFFF;
text-align: center;
margin-bottom: 20px;
}
/* Style the text content */
p {
font-size: 16px;
line-height: 1.5;
color: #9a9a9a;
}
/* Style the buttons */
button {
font-family: 'Roboto', sans-serif;
font-size: 14px;
font-weight: 700;
color: #FF4B4B;
background-color: #FFFFFF;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
/* Style the dropdown bar */
.Select__input-container {
width: 300px;
margin-bottom: 20px;
}
.Select__placeholder {
color: #837e7e;
}
.Select__value-container {
background-color: #fff;
border: 1px solid #000000;
border-radius: 4px;
padding: 8px 12px;
color: #000000;
font-weight: 700;
}
.Select__menu {
background-color: #fff;
border: 1px solid #000000;
border-radius: 4px;
}
.Select__option {
padding: 8px 12px;
cursor: pointer;
}
.Select__option:hover {
background-color: #000000;
color: #fff;
}
.Select__option--is-selected {
background-color: #000000;
color: #fff;
}
.Select__control {
border: 1px solid #000000;
border-radius: 4px;
background-color: #fff;
box-shadow: none;
}
.Select__control:hover {
border-color: #000000;
}
/* Style other elements as needed */