-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
104 lines (84 loc) · 1.74 KB
/
styles.css
File metadata and controls
104 lines (84 loc) · 1.74 KB
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
@import url('https://fonts.googleapis.com/css2?family=Georgia:wght@300;400;500;600;700&family=Arial:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Arial', sans-serif; /* Set body font to Arial */
}
/* HEADER FONT CHANGE */
h1, h2, h3, h4, h5, h6 {
font-family: 'Georgia', serif; /* Set headers font to Georgia */
text-align: left;
color: #2D2D2D;
padding-bottom: 35px;
}
/* TEXT STYLES */
.text {
font-size: 16px;
font-family: 'Arial', sans-serif;
font-weight: normal;
text-align: left;
padding-top: 10px;
}
/* COLOR CLASSES */
.yellow_text {
color: #FFB600;
}
.tangerine_text {
color: #EB8C00;
}
.orange_text {
color: #D04A02;
}
.rose_text {
color: #DB536A;
}
.red_text {
color: #E0301E;
}
.black_text {
color: #000000;
}
.dark_grey_text {
color: #2D2D2D;
}
.medium_grey_text {
color: #464646;
}
.grey_text {
color: #7D7D7D;
}
.light_grey_text {
color: #DEDEDE;
}
.white_text {
color: #FFFFFF;
}
/* DIFFERENT BACKGROUND COLOR SECTION */
.custom_section_grey {
background-color: #F2F2F2;
padding: 15px;
border-radius: 0px;
}
.custom_section_orange {
background-color: #D04A02;
padding: 15px;
border-radius: 0px;
}
/* BUTTON STYLING */
:root {
--default-color: #D04A02;
--hover-color: #FFFFFF;
}
/* Apply button styling and hover effect */
div.stButton > button:first-child {
background-color: var(--default-color);
color: white;
transition: background-color 0.3s, color 0.3s;
outline: none;
border-radius: 0;
}
div.stButton > button:first-child:hover {
background-color: var(--hover-color);
color: black;
transition: background-color 0.3s, color 0.3s;
outline: none;
border-radius: 0;
}