-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.css
More file actions
76 lines (69 loc) · 1.05 KB
/
Copy pathdashboard.css
File metadata and controls
76 lines (69 loc) · 1.05 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
html, body {
background-color:#202124;
text-align:center;
flex-wrap: wrap;
height: 50px;
color:white;
margin:0;
}
.logo{
height:10px;
width:10px;
}
.header{
display:flex;
height:30px;
border:1px solid black;
justify-content:center;
background-color: #F0F7EE;
padding:5px 50px;
}
.links{
padding:5px 50px;
color: #5D737E;
}
.links:hover{
border-bottom:1px solid #5D737E;
}
p{
font-size:24px;
}
a{
color: #77865b;
}
span{
font-size:24px;
}
img {
margin:auto;
margin-top:200px;
display: flex;
flex-direction: column;
}
input{
display: flex;
flex-direction: column;
margin:10px auto;
padding:15px 220px;
box-sizing: border-box;
color:white;
background-color:#202124;
border: 1px solid #5f6368;
border-radius:30px;
word-wrap: break-word;
}
input:hover{
background-color:#4e4e4e;
}
button{
display: inline-block;
margin:10px 5px;
padding:10px 20px;
background-color:#303134;
border: 1px solid #303134;
color:white;
border-radius:5px;
}
button:hover{
border: 1px solid #4e4e4e;
}