-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (84 loc) · 1.67 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
@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans&display=swap');
* {
font-family: 'Playpen Sans', cursive;
}
/* Main Header */
h1 {
font-size: 46px;
color: #141E46;
font-weight: bold;
text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
margin: 30px 0;
background: #e6f7e9;
padding: 30px;
border-bottom: 4px solid #555;
letter-spacing: 2px;
border-radius: 10px;
}
/* Subheading Styles */
h2 {
font-size: 24px;
color: #007acc;
font-weight: bold;
margin-top: 20px;
margin-bottom: 10px;
position: relative;
}
h2::before {
content: "";
position: absolute;
width: 50px;
height: 3px;
background-color: #007acc;
top: 50%;
transform: translateY(-50%);
left: -60px;
}
h2::after {
content: "";
position: absolute;
width: 20px;
height: 20px;
background-color: #007acc;
border-radius: 50%;
top: 50%;
transform: translateY(-50%);
right: -30px;
}
/* Sub-subheading Styles */
h3 {
font-size: 30px;
color: #880000;
font-weight: bold;
margin-top: 15px;
margin-bottom: 10px;
position: relative;
}
h3::before {
content: "";
position: absolute;
width: 60px;
height: 3px;
background-color: #880000;
top: 50%;
transform: translateY(-50%);
left: -70px;
}
/* Big font class */
.big-font {
font-size: 30px;
color: #004499;
font-weight: bold;
}
/* Button styles */
.stButton > button {
border-radius: 12px;
border: 2px solid #555;
padding: 10px 20px;
color: white;
background-color: #222;
transition: transform 0.3s ease-in-out;
}
.stButton > button:hover {
transform: scale(1.05);
}