-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
87 lines (73 loc) · 1.6 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
html {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
body {
margin: 0;
padding: 0;
overflow: hidden;
}
/* Styles for the circular frame */
.circle-frame {
border: 6px solid white;
border-radius: 50%;
width: 120px;
height: 100px;
margin: 0 auto; /* Center the circular frame horizontally */
margin-bottom: -15px; /* Adjust this value to create space above the form */
margin-top: 0px;
overflow: hidden;
}
.circle-frame img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* Styles for the text container */
.text-container {
text-align: center; /* Center the text horizontally */
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 30px;
text-align: center;
/* background-color: rgba(255, 255, 255, 0.8); */
margin-top: -40px;
margin-bottom: 60px; /* Adjust this value to create space above the footer */
max-height: 48vh; /* Set a minimum height to ensure content is displayed */
}
h1 {
font-size: 24px;
margin-bottom: 20px;
}
ul.no-bullets {
list-style-type: none;
padding: 0;
margin: 0;
}
.links {
list-style: none;
padding: 0;
}
.links li {
margin-bottom: 10px;
}
.links li a {
display: inline-block;
padding: 10px 20px;
background-color: #2196f3;
color: #fff;
text-decoration: none;
border-radius: 4px;
}
.links li a:hover {
background-color: #0c7bbf;
}
footer {
background-color: #f4f4f4;
color: #333;
padding: 0px;
text-align: center;
}