-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
108 lines (92 loc) · 1.71 KB
/
Copy pathinput.css
File metadata and controls
108 lines (92 loc) · 1.71 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
@tailwind base;
@tailwind components;
@tailwind utilities;
.welcome-container {
width: 100%;
height: 25%;
opacity: 0.5;
min-height: 400px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-image: url("/static/images/image.png");
background-size: 100%;
background-repeat: no-repeat;
}
/*change text of buttons in nav bar on hover*/
.hover\:text-blue:hover {
color: rgb(30 64 175 / var(--tw-bg-opacity));
}
.focus\:outline-none:focus {
outline: 2px solid transparent;
outline-offset: 2px;
}
@media (min-width: 798px) {
.md\:w-1\/2 {
width: 50%;
}
}
.p-8 {
padding: 2rem;
}
.px-8 {
padding-left: 2.5rem;
padding-right: 2.5rem;
}
.py-8 {
padding-top: 2.5rem;
padding-bottom: 2.5rem;
}
.mr-2{
margin-right: 2rem;
}
.m-10{
margin: 2rem;
}
.hover\:bg-white:hover {
--tw-bg-opacity: 1;
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.account-menu-content {
position: absolute;
top: 95px;
right: -22%;
border: solid black 1px;
background-color: white;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
flex-direction: column;
display:flex;
justify-content: center;
align-items: center;
width: 20%;
color: black;
border-radius: 10px;
transition: 0.3s;
z-index: 1000;
}
.account-menu-content.active {
right: 2%;
}
.signIn-form {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.input-section {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
width: 100%;
padding: 2%;
margin-bottom: 3%;
}
/*my profile page styling*/
.tabcontent{
display:none;
}
.tabs.active{
background-color: rgb(209 213 219);
}