-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (71 loc) · 1.75 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
#ssmadLibsPreview, .editableFields, .review{
text-align: center;
font-size: 100%;
}
h4{
text-align: center;
font-family: 'Dancing Script', cursive;
font-size: 70px !important;
padding-top: 30px;
}
/**
kemal part
*/
#body {
background: url(./Background.png);
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
header {
text-align: center;
}
.container {
display: flex;
flex-direction: column;
}
.hovermouse:hover{
background-color:rgba(0, 0, 255, 0.225);
box-shadow: 10px 10px 5px 0px rgba(205,214,219,0.25);
-webkit-box-shadow: 10px 10px 5px 0px rgba(205,214,219,0.25);
-moz-box-shadow: 10px 10px 5px 0px rgba(205,214,219,0.25);
}
#madLibsEdit{
text-align: center;
font-size: 150%;
border: 1px solid blue;
border-radius: 25px;
margin: 20px 100px 15px 30px;
padding: 20px 20px 20px 20px;
}
#ssmadLibsPreview{
text-align: center;
font-size: 150%;
border: 1px solid blue;
border-radius: 25px;
margin: 20px 100px 15px 30px;
padding: 20px 20px 20px 20px;
}
/**
dark mode
*/
[data-theme="dark"] {
background: rgba(17, 17, 17, 0.832) !important;
background-color: rgba(17, 17, 17, 0.832) !important;
color: rgb(255, 255, 255);
}
[data-theme="dark"] #button{
background-color: rgba(17, 17, 17, 0.832) !important;
color: rgb(255, 255, 255);
}
[data-theme="dark"] #navbar {
background-color: #000 !important;
color: rgb(255, 255, 255)!important;
}
[data-theme="dark"] #madLibsEdit {
background-color: #000 !important;
color: rgb(255, 255, 255)!important;
}
[data-theme="dark"] #ssmadLibsPreview {
background-color: #000 !important;
}