-
Notifications
You must be signed in to change notification settings - Fork 17
/
style.css
149 lines (122 loc) · 1.95 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
html,
body {
height: 100%;
margin: 0px;
padding: 20px;
box-sizing: border-box;
}
.paragraph-text {
color: blue;
}
.my-button {
border: 0px;
background-color: #CDDEE9;
padding: 10px;
border: 1px solid black;
}
.grid-container {
/*set the positioning of the grid*/
/*so that it fills the screen*/
position: absolute;
top: 0px;
left: 0px;
min-height: 100%;
width: 100%;
/*set display to grid*/
display: grid;
grid-template-columns: 250px auto;
grid-template-rows: 100% 100%;
}
.left-col {
/*style left column*/
padding: 15px;
background-color: #780000;
}
.right-col {
/*style right column*/
padding: 15px;
background-color: #FDF0D5;
}
#content-area {
height: 100%;
}
/*format for each chirp message*/
.auto-div {
/*15px on top and botton*/
/*0 on left and right*/
margin: 15px 0;
padding: 10px;
background-color: #FDF0D5;
border: 3px solid #669BBC;
}
.right {
margin: -15px 0;
padding: 3px;
text-align:right;
}
/* dark mode button */
.change {
cursor: pointer;
border: 1px solid #555;
border-radius: 40%;
width: 20px;
text-align: center;
padding: 5px;
margin-left: 8px;
}
#mode {
border: 0px;
background-color: lightslategray;
padding: 15px;
border: 1px solid black;
}
/* dark mode */
.darkRight-col {
background-color: #878683;
}
.darkLeft-col {
background-color: #444444;
}
.darkAuto-div {
background-color: #bebebe;
border: 3px solid #082c6c;
}
/* fonts for landing */
h1 {
font-weight: 400;
font-size: 15vh;
font-family: 'Quicksand', sans-serif;
}
p {
font-family: 'Raleway', sans-serif;
font-size: 3vh;
}
/* for landing page */
#landing{
background-color: #FDFCDC;
}
#landinglogo {
min-width: 100px;
margin: auto;
}
#top {
margin-bottom: 20vh;
}
#button {
/* font-family: 'Raleway', sans-serif; */
padding-bottom: 20px;
}
a:link {
color: black;
text-decoration: none;
}
a:visited {
color: black;
}
a:hover {
color: #00AFB9;
text-decoration: underline;
}
.main {
text-align: center;
}