aboutsummaryrefslogtreecommitdiff
path: root/crumbs/static/css/crumbs.css
blob: afba353cf939a1e1c6c5206f0875ef579e70440c (plain)
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
/**************************************

   BASIC DEFINITIONS 

**************************************/


body {
  font-family: 'Montserrat', sans-serif;
  color: #BEBEBE;
  background-color: #222222;
  background-image: none;
  line-height: 32px;
  -webkit-font-smoothing:antialiased;
  text-rendering: optimizeLegibility;
  margin: 0;
}

p {
  font-size: 22px;
  font-weight: 300;
}

h1, h2, h3, h4 {
  font-family: 'Inconsolata', monospace;
}

div.navigation {
  padding-top: 12px;
  padding-bottom: 25px;
  padding-right: 32px;
  height: 50px;
  line-height: 50px;
}

div.navigation a {
  font-weight: 500;
  font-size: 22px;
  color:#FFF;
  
  text-decoration: none;
  padding-left: 48px;
  /* margin-left: 20px; */
  text-transform: lowercase;
  /* transition: all 0.2s ease-out; */
}

.title {
  font-size: 22px;
  text-transform: lowercase;
  margin-left: 25px;
}


/*

    ✨ COLOUR DEFINITIONS ✨

  These colours are re-used in many parts of the website

*/

.cursor {
  animation: flash 0.75s infinite alternate;  
}

@keyframes flash {
  0%   { opacity: 1; }
  49%  { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 0; }
}

#t-color-red { color: #ef787b; }
#t-color-org { color: #f6915f; }
#t-color-ylw { color: #fdcb71; }
#t-color-grn { color: #99cb9b; }


.colour1  { background-color: #3c3c3c; }
.colour2  { background-color: #525252; }
.colour3  { background-color: #74736a; }
.colour4  { background-color: #9f9e93; }
.colour5  { background-color: #d2cfc7; }
.colour6  { background-color: #e7e5df; }
.colour7  { background-color: #f1f0ec; }
.colour8  { background-color: #ef787b; } /* Red */
.colour9  { background-color: #f6915f; } /* Orange */
.colour10 { background-color: #fdcb71; } /* Yellow */
.colour11 { background-color: #99cb9b; } /* Green */
.colour12 { background-color: #6ccaca; } /* Cyan */
.colour13 { background-color: #6997c8; } /* Blue */
.colour14 { background-color: #ca98c9; } /* Purple */
.colour15 { background-color: #ce7b59; } /* Brown */

/*

    ✨ CARD DEFINITIONS ✨

*/

div.card {
  padding: 25px;
  background-color: #CECECE;
  color: #222222;
  width: 100%;
  margin-bottom: 25px;
}

div.card h1 {
  font-weight: 500;
}

div.card hr {
  background-color: #222222;
  height: 1px;
  border: 1px;
  margin-top: 45px;
  margin-bottom: 45px;
  margin-left: 25px;
  margin-right: 25px;
}


/* hr {
  display: ;
  color: #222222;
  height: 1px;
  border: 0;
  border-top: 1px solid #222222;
  margin: 1em 0;
  padding: 0; 
  padding-bottom: 15px;
  padding-top: 15px;
} */