-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (99 loc) · 2.01 KB
/
style.css
File metadata and controls
114 lines (99 loc) · 2.01 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
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
position: relative;
}
.login-button {
padding: 10px 20px;
font-size: 16px;
color: white;
background-color: blue;
border: none;
border-radius: 5px;
cursor: pointer;
}
.logout-button {
padding: 10px 20px;
font-size: 16px;
color: white;
background-color: red;
border: none;
border-radius: 5px;
cursor: pointer;
position: absolute;
bottom: 20px;
/* left: 50%;
transform: translateX(-50%); */
}
.logout-button:hover{
background-color: #ff4500;
transform: scale(1.05);
}
.user-info-toggle {
font-size: 6rem;
text-align: center;
transition: font-size 0.5s ease;
}
.user-details {
font-size: 2rem;
text-align: left;
}
.navbar {
padding-top: 1rem;
padding-bottom: 1rem;
font-size: 1.2rem;
min-height: 80px;
background-color:#cdffdc;
}
.nav-item button {
border: 2px solid #0a5b25;
background-color: #b5f2d1;
font-weight: bold;
padding: 8px 16px;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
}
.nav-item button:hover {
background-color: #3cb74e;
border: 2px solid #0e441c;
transform: scale(1.05);
}
.nav-item {
margin-right: 5px;
}
.nav-item:last-child {
margin-right: 0;
}
.navbar-brand {
font-size: 4rem;
font-weight: bold;
padding: 8px 16px;
border-radius: 8px;
transition: all 0.3s ease;
background-color: #7cf5b0;
border-color: #0b1e16;
line-height: 2;
}
.navbar-brand:hover {
color: #ffffff;
background-color: #32f791;
border: 2px solid transparent;
border-color: #0e1d0f;
transform: scale(1.1);
text-decoration: none;
}
h1 {
font-size: 4vw !important;
letter-spacing: 0.5em !important;
}
.cardo-regular {
font-family: "Cardo", serif;
font-weight: 400;
font-style: normal;
}