-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle.css
96 lines (79 loc) · 1.51 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
/*Style-sheet for BOTH HTML files.*/
body {
text-align:center;
background-color:#23c8d1;
color:#eaf8ff;
width:300px;
}
#chosen {
font-size: 22px;
background-color:#00ccac;
/*color:#000000;
border-radius:12px;*/
}
/*Make buttons on same line*/
#edit {
float:left;
}
#RANDOMIZE {
float:left;
}
#title {
position:relative;
left:0;
right:0;
font-size:20px;
background-color:#93d5d8;
color:#ffd84c;
width:100%;
margin:0;
padding:0;
text-shadow: 1px 1px #000000;
}
#display {
background-color:#FFFFFF;
color:black;
text-transform:none;
word-wrap: break-word;
}
#periodSelect {
display:inline-block;
padding:0.7em 1.4em;
margin:0 0.3em 0.3em 0;
border-radius:0.15em;
box-sizing: border-box;
text-decoration:none;
font-family:'Roboto',sans-serif;
text-transform:uppercase;
font-weight:400;
color:#000000;
background-color:#ffd84c;
box-shadow:inset 0 -0.6em 0 -0.35em rgba(0,0,0,0.17);
text-align:center;
position:relative;
}
.btns {
display:inline-block;
padding:0.7em 1.4em;
margin:0 0.3em 0.3em 0;
border-radius:0.15em;
box-sizing: border-box;
text-decoration:none;
font-family:'Roboto',sans-serif;
text-transform:uppercase;
font-weight:400;
color:#FFFFFF;
background-color:#128f96;
box-shadow:inset 0 -0.6em 0 -0.35em rgba(0,0,0,0.17);
text-align:center;
position:relative;
}
.btns:active{
top:0.1em;
}
@media all and (max-width:30em){
.btns{
display:block;
margin:0.4em auto;
}
}