-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathparent.css
More file actions
100 lines (89 loc) · 1.48 KB
/
Copy pathparent.css
File metadata and controls
100 lines (89 loc) · 1.48 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
*{
padding: 0;
margin: 0;
}
html{
scroll-behavior: smooth;
}
#navbar{
display: flex;
color: white;
align-items: center;
position: sticky;
top: 0px;
z-index: 1;
}
#navbar::before{
content: "";
background-color: #2980B9;
position: absolute;
top:0px;
left:0px;
height: 100%;
width:100%;
z-index: -1;
}
#logo{
margin: 0.1% 1% 0 12%;
}
#logo img{
height: 65px;
margin: 3px 6px;
}
.place{
margin-left: 45%;
}
.place h1{
font-weight: normal;
}
body{
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
background-color: #f2f2f2;
}
#login{
height: 100vh;
display: flex;
}
.card{
position: relative;
width: 33.33%;
/* height: 130px; */
background-color: white;
border-radius: 4px;
margin: 15px 0 0 33.33%;
display: flex;
flex-direction: column;
border-top: 3px solid #00c0ef;
}
.head{
color: #444;
display: block;
position: relative;
margin: 0px;
padding: 0px 0px 0px 15px;
height: auto;
overflow: hidden;
border-bottom: 1px solid #f4f4f4;
}
.head h3{
margin: 8.5px 0px;
font-size: 15px;
font-weight: normal;
}
.btn{
padding: 10px;
margin-inline: auto;
}
.btn button{
color: white;
border-radius: 4px;
border: 1px solid transparent;
padding: 7px 12px;
font-size: 12px;
float: right;
cursor: pointer;
background-color:#337ab7;
}
.btn button:hover{
background-color: #286090;
}