-
Notifications
You must be signed in to change notification settings - Fork 0
/
adminpage.css
92 lines (73 loc) · 1.58 KB
/
adminpage.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
img{
width: 50px;
height: 50px;
border-radius: 50%;
}
#logo{
float: left;
}
#navbar{
padding: 20px 15px;
color: red;
background-color: rgb(179, 49, 2)
}
#navbar ul{
list-style: none;
margin: 0;
padding: 0;
text-align: right;
}
#navbar li{
display: inline;
}
#navbar a{
text-decoration: none;
font-size: 19px;
background-color: beige;
padding: 15px 14px;
}
#container{
background: url('images/background.jpg');
background-size: 100% 100%;
background-repeat: no-repeat;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: medium;
width: 100%;
height: 100%;
text-align: center;
box-sizing: border-box;
padding: 200px;
}
#heading{
font-size: 50px;
}
#heading{
color: aliceblue;
font-weight: bold;
}
a :link{
background-color: beige;
}
.button{
text-align: center;
text-decoration: none;
display:inline-block;
border: none;
padding: 14px 25px;
border-radius: 12px;
cursor: pointer;
opacity: 0,6;
text-decoration: none;
display:inline-block;
border: none;
padding: 10px 24px;
border-radius: 12px;
cursor: pointer;
opacity: 0,6;
}
a :hover{
background-color: brown;
}
a :active{
color: burlywood;
}