-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
131 lines (110 loc) · 1.88 KB
/
styles.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
*{
font-family: 'Sulphur Point', sans-serif;
}
.bg-dark{
background:black;
}
.nav-logo{
width: 50px;
}
.alert{
border-radius: 20px;
padding: 20px;
box-shadow: 0px 0px 4px 0px black;
}
.sidebar{
background: #C8C8C8;
color:white;
height:100%;
}
body{
background-color:rgba(17,17,17,1.00);
transition: opacity .2s;
opacity:100% !important;
}
.sb-header{
margin:10px;
}
.sb-categories{
}
.sb-button{
min-width:120px;
display:flex;
background:none;
padding:10px;
margin:10px;
border-radius:50px;
color:white;
transition: background-color .2s, color .2s, padding-left .2s;
}
.sb-button:hover{
background-color:darkslategray;
color:white;
text-decoration: none;
padding: 10px 6px 10px 14px
}
.sb-button:focus{
padding:10px 0px 10px 20px;
background:#00A3FF
}
.sb-button-active{
padding:10px 0px 10px 20px;
background:#00A3FF
}
.sb-button-active:hover{
padding:10px 0px 10px 20px;
}
.main{
}
.arg{
font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
background-color: lightgray;
padding: 2px;
color:black;
}
.dropdown-menu{
background-color:black;
color:white;
}
.intro-box{
box-shadow: 0px 0px 4px 0px black;
border-radius: 20px;
padding: 20px;
margin-top: 16px;
background:rgba(47,47,47,1.00);
color:white;
}
.gallery-item{
display: flex
box-shadow: 0px 0px 4px 0px black;
border-radius: 20px;
padding: 20px;
margin-top: 16px;
background:rgba(47,47,47,1.00);
color:white;
}
.gallery-item-header-hr{
border-top: 1px solid white;
}
.gallery-image{
float:right;
height:250px;
}
.table{
box-shadow: 0px 0px 4px 0px black;
border-radius: 20px;
padding: 20px;
margin-top: 16px;
background:rgba(47,47,47,1.00);
color:white;
}
thead{
border-bottom: 2px solid gray;
}
.category-header{
text-align:center;
color:white;
}
.footer-credit{
color:darkgray;
}