-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
162 lines (135 loc) · 3.99 KB
/
Copy pathstyles.css
File metadata and controls
162 lines (135 loc) · 3.99 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/* Reset some default styles for better consistency */
body, html {
margin: 0;
padding: 5;
font-family: 'Tahoma', sans-serif;
}
canvas {
padding: 5px 10px;
}
button {
padding: 5px 10px;
background-color: #cc66cc;
color: #fff;
border: none;
margin: 5px;
border-radius: 5px;
cursor: pointer;
}
#frame {
width: 100vw;
height: 100vh;
border: none;
padding: auto;
margin-bottom: 20px;
}
/* Style for the button container */
.button-container {
display: flex;
justify-content: center;
align-items: center;
height: 5vh; /* Updated height to 3vh */
margin-bottom: 20px;
}
/* Style for the button */
.button-container input[type="button"] {
padding: 20px 40px;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
margin: 0 auto;
height: 5vh; /* Updated height to 3vh */
margin-bottom: 20px;
background-color: #4CAF50; /* Green button color */
color: #fff; /* White text color */
border: 2px solid #45a049; /* Darker green border */
}
/* Hover effect for the button */
.button-container input[type="button"]:hover {
background-color: #4CAF50; /* Green button color */
color: #fff; /* White text color */
border: 2px solid #45a049; /* Darker green border */}
}
/* Style for the filled appearance */
.button-container input[type="button"].filled {
color: #fff; /* White text color */
background-color: #4CAF50; /* Green button color */
color: #fff; /* White text color */
border: 2px solid #45a049; /* Darker green border */
}
/* Hover effect for the filled appearance */
.button-container input[type="button"].filled:hover {
background-color: #4CAF50; /* Green button color */
color: #fff; /* White text color */
border: 2px solid #45a049; /* Darker green border */
}
/* Style for h1 elements */
h1 {
text-align: center;
margin: 40px 0;
color: #4CAF50; /* White text color */
text-decoration: none;
transition: border-bottom 0.3s ease;
border-radius: 5px;
padding: 10px 20px;
margin: 0 auto;
align-items: center;
}
/* Style for anchor (a) elements */
a {
text-decoration: none;
transition: border-bottom 0.3s ease;
border-radius: 5px;
padding: 10px 20px;
background-color: #4CAF50; /* Green button color */
color: #fff; /* White text color */
border: 2px solid #45a049; /* Darker green border */
}
/* Hover effect for anchor (a) elements */
a:hover {
border-bottom: 1px solid #1565C0; /* Darker blue underline on hover */
}
input[type="button"] {
margin: 10px;
padding: 8px 15px;
font-size: 14px;
background-color: #4CAF50; /* Green button color */
color: #fff; /* White text color */
border: 2px solid #45a049; /* Darker green border */
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
margin-bottom: 20px;
}
/* Hover effect for the additional button */
input[type="button"]:hover {
background-color: #45a049; /* Darker green on hover */
}
.slidecontainer {
margin: 5px;
padding: 8px 15px;
font-size: 14px;
color: #000; /* White text color */
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
margin-bottom: 10px;
}
.box-center {
width: 500px; /* Set the width of the box */
padding: 20px; /* Add padding inside the box */
border: 2px solid #333; /* Add a border around the box */
background-color: #f8f8f8; /* Set the background color of the box */
margin: 20px; /* Add margin to create space around the box */
text-align: center; /* Center the text inside the box */
align-items: center;
}
.box {
width: 500px; /* Set the width of the box */
padding: 20px; /* Add padding inside the box */
border: 2px solid #333; /* Add a border around the box */
background-color: #f8f8f8; /* Set the background color of the box */
margin: 20px; /* Add margin to create space around the box */
text-align: center; /* Center the text inside the box */
}