-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (69 loc) · 1.15 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
/*
BW Color Contrast AI - style.css
Author: Eric Liang
Author URI: https://www.eric-liang.com
Author Github URI: https://www.github.com/ewliang
Project Repository URI: https://github.com/ewliang/BW-Color-Contrast-AI
Description: The main stylesheet for the BW Color Contrast AI project.
License: GPL v3.0
*/
* {
font-family: 'Arial', sans-serif;
}
html {
font-size: 100%;
}
body {
font-size: 16px;
font-size: 1rem;
max-height: 100vh;
margin: 0px;
}
header {
background-color: #fff;
padding: 3%;
}
h1 {
font-size: 24px;
font-weight: 600;
margin: 0;
}
p {
font-size: 0.875rem;
font-weight: 100;
line-height: 1.6;
}
main {
display: flex;
flex-direction: column;
}
main div {
display: flex;
flex-direction: row;
padding: 3%;
}
main div div {
width: 50vw;
max-width: 360px;
height: 50vh;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
margin: 0 auto;
}
main div div:hover {
cursor: pointer;
}
#blackText {
font-size: 1.5rem;
color: #000 !important;
}
#whiteText {
font-size: 1.5rem;
color: #fff !important;
}
footer {
text-align: center;
padding: 3% 0;
}