-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (82 loc) · 1.4 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
html,body{height:100%;font-family: sans-serif;background-color: Beige }
.vertical-layout{
display: flex;
flex-direction: column;
min-height: 0px;
}
.horizontal-layout{
display: flex;
flex-direction: row;
min-height: 0px;
}
.distributed{
justify-content: space-between;
}
.vertical-centered{
align-content: center ;
}
.vertical-layout > div{
}
.horizontal-layout > div{
}
.none{
display: none;
}
.full_width{
width:100%;
}
.border-b{
border-bottom: 1px dashed black;
}
.border-r{
border-right: 1px dashed black;
}
.full_center{
display: flex;
justify-content: center;
align-items: center;
}
.text_center{
text-align: center;
}
.button {
background-color: white;
border: none;
color: black;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
-webkit-transition-duration: 0.6s; /* Safari */
transition-duration: 0.6s;
cursor: pointer;
border: 1px solid #2a93b5;
}
.button:hover {
background-color: #2a93b5;
color: white;
}
.as-char{
height: 1em;
}
.dark{
background-color: #040404;
color: lightgrey;
}
.blue{
background-color: blue;
}
.red{
background-color: red;
}
.green{
background-color: green;
}
.aquamarine{
background-color: aquamarine;
}
.purple{
background-color: purple;
}