-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
108 lines (94 loc) · 1.59 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
body {
background-color: rgb(24, 32, 37);
font-family: 'Lato', sans-serif;
margin: 20px;
text-align: center;
color: #FFF;
font-weight: 400;
}
h1 {
color: #f8bc45;
margin-bottom: 10px;
}
h2 {
font-size: 30px;
font-weight: 700;
}
h3 {
padding: 0;
margin: 10px;
font-size: 20px;
font-weight: 700;
}
.description {
font-size: 14px;
padding: 0 0 2px 0;
}
.container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: flex-start;
align-content: stretch;
}
.box {
width: 300px;
height: 200px;
padding: 10px;
margin: 10px;
border: 1px solid grey;
border-radius: 3px;
background-color: #c596c7;
color: rgb(24, 32, 37);
box-sizing: border-box;
}
.modal {
height: 350px;
width: 80%;
margin: 0 auto;
background-color: #FFF;
color: #000;
position: fixed;
top: 40px;
right: 0;
left: 0;
z-index: 100;
border-radius: 5px;
padding: 10px;
min-height: 380px;
}
.modal-overlay {
background-color: rgba(0,0,0,0.75);
position: fixed;
top: 0;
right: 0;
left: 0;
width: 100%;
height: 100%;
}
textarea {
margin-bottom: 10px;
max-width: 100%;
}
code {
font-family: courier;
}
input, button {
border-radius: 3px;
background-color: #fff;
padding: 10px;
margin: 10px;
}
button {
cursor: pointer;
font-weight: 700;
font-size: 14px;
}
button.selected {
background-color: #f8bc45;
}
button.green {
background-color: #5ab3b3;
font-size: 22px;
}