-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
143 lines (118 loc) · 2.12 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
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
html, body {
font-size: 16px;
background-color: lightseagreen;
}
.void-background {
background-color: transparent;
}
section {
padding-top: 3rem;
padding-bottom: 3rem;
}
a.nav-item {
color: azure;
}
a.nav-item:hover {
color: black;
}
.section1 {
background-color: lightseagreen;
}
.avatar {
height: 225px;
}
.intro {
color: azure;
}
.section2 {
background-image: linear-gradient(to top, #fbc2eb 0%, #a6c1ee 100%);
}
.CPTitle {
font-size: 24px;
font-weight: bold;
}
.box {
background-color: transparent;
border: 2px solid whitesmoke;
}
.project-figure {
margin: 0 auto 1 rem auto;
}
.section3 {
background-image: linear-gradient(to top, #fdcbf1 0%, #fdcbf1 1%, #e6dee9 100%); opacity: 90%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 12px 6px;
cursor: pointer;
}
.flex-space {
display: flex;
justify-content: space-between;
}
.ApptTitle {
font-size: 24px;
font-weight: bold;
}
.inputgroup {
margin-bottom: 8px;
text-align: center;
}
.inputgroup label {
display: block;
margin-bottom: 5px;
}
.inputgroup input {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 5px;
text-align: center;
}
.select-menu {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 5px;
text-align: center;
}
.button {
display: flex;
background-color: aqua;
border-radius: 50px;
}
.button button {
width: 900%;
padding: 5px;
padding-top: 2%;
padding-bottom: 2%;
padding-bottom: 2%;
background-color: rgb(255, 255, 255);
border: #f6f6f6;
border-radius: 50px;
}
.section4 {
background-image: linear-gradient(to top, #9795f0 0%, #fbc8d4 100%);
}
.SMTitle {
font-size: 24px;
font-weight: bold;
}
.social-container img{
max-width: 100%;
max-height: 175px;
margin-bottom: 15px;
}
.contactme {
color: white;
}
footer {
background-color: transparent;
display: flex;
align-items: center;
justify-content: center;
}
.footer-text {
color: #e6dee9;
}