-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathstyle.css
165 lines (138 loc) · 2.44 KB
/
style.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/* Import Font Dancing Script */
@import url(https://fonts.googleapis.com/css?family=Dancing+Script);
* {
margin: 0;
}
body {
background-color: #e8f5ff;
font-family: Arial;
overflow: hidden;
}
/* NavbarTop */
.navbar-top {
background-color: #fff;
color: #333;
box-shadow: 0px 4px 8px 0px grey;
height: 70px;
}
.title {
font-family: 'Dancing Script', cursive;
padding-top: 15px;
position: absolute;
left: 45%;
}
.navbar-top ul {
float: right;
list-style-type: none;
margin: 0;
overflow: hidden;
padding: 18px 50px 0 40px;
}
.navbar-top ul li {
float: left;
}
.navbar-top ul li a {
color: #333;
padding: 14px 16px;
text-align: center;
text-decoration: none;
}
.icon-count {
background-color: #ff0000;
color: #fff;
float: right;
font-size: 11px;
left: -25px;
padding: 2px;
position: relative;
}
/* End */
/* Sidenav */
.sidenav {
background-color: #fff;
color: #333;
border-bottom-right-radius: 25px;
height: 86%;
left: 0;
overflow-x: hidden;
padding-top: 20px;
position: absolute;
top: 70px;
width: 250px;
}
.profile {
margin-bottom: 20px;
margin-top: -12px;
text-align: center;
}
.profile img {
border-radius: 50%;
box-shadow: 0px 0px 5px 1px grey;
}
.name {
font-size: 20px;
font-weight: bold;
padding-top: 20px;
}
.job {
font-size: 16px;
font-weight: bold;
padding-top: 10px;
}
.url, hr {
text-align: center;
}
.url hr {
margin-left: 20%;
width: 60%;
}
.url a {
color: #818181;
display: block;
font-size: 20px;
margin: 10px 0;
padding: 6px 8px;
text-decoration: none;
}
.url a:hover, .url .active {
background-color: #e8f5ff;
border-radius: 28px;
color: #000;
margin-left: 14%;
width: 65%;
}
/* End */
/* Main */
.main {
margin-top: 2%;
margin-left: 29%;
font-size: 28px;
padding: 0 10px;
width: 58%;
}
.main h2 {
color: #333;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 24px;
margin-bottom: 10px;
}
.main .card {
background-color: #fff;
border-radius: 18px;
box-shadow: 1px 1px 8px 0 grey;
height: auto;
margin-bottom: 20px;
padding: 20px 0 20px 50px;
}
.main .card table {
border: none;
font-size: 16px;
height: 270px;
width: 80%;
}
.edit {
position: absolute;
color: #e7e7e8;
right: 14%;
}
/* End */