-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
117 lines (107 loc) · 2.08 KB
/
style.css
File metadata and controls
117 lines (107 loc) · 2.08 KB
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
109
110
111
112
113
114
115
116
117
body, html {
font-family: arial;
font-size: 13px;
background-color: rgb(247, 249, 252);
}
#grd {
display: inline-grid;
grid-gap: 5px;
grid-template-columns: 1fr 1fr;
}
.button {
background-color: #4caf50;
border: 1px solid #45a741;
border-radius: 3px;
color: white;
padding: 2px 2px;
text-align: center;
text-decoration: none;
display: inline-block;
margin: 4px 2px;
cursor: pointer;
transition-duration: 0.5s;
}
.button:hover {
background-color: #45a741;
}
#button2 {
background-color: #007799;
border: 1px solid blue;
}
#box {
background-color: #ecf0f1;
margin: 10px solid;
padding: 5px 0px 0 0px;
border: 1px solid #cccccc;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
height: fit-content;
font-size: 14px;
box-shadow: 2px 2px 2px #cccccc;
}
#box #box_text {
font-size: 13px;
border: 1px solid #cccccc;
color: black;
padding: 5px;
background-color: white;
}
#box {
width: fit-content;
height: fit-content;
}
@media only screen and (max-device-width: 800px) {
#box {
width: 100%;
}
}
textarea, input[type=text] {
border: none;
border-bottom: 2px solid #999999;
background-color: #fdfdfd;
}
textarea:focus, input[type=text]:focus {
border: none;
outline: none;
border-bottom: 2px solid #005577;
background-color: #ffffff;
transition: ease-in-out, background-color .20s ease-in-out;
}
ul {
font-family: serif;
z-index: 999;
position: fixed;
list-style-type: none;
background-image: linear-gradient(45deg, #343434 25%, #303030 25%, #303030 50%, #343434 50%, #343434 75%, #303030 75%, #303030 100%);
background-size: 8.49px 8.49px;
color: #dddddd;
font-size: 15px;
width: 100%;
padding: 0px;
margin: 0px;
top: 0px;
font-size: 15px;
box-shadow: -5px 1px 11px #222;
}
li {
float: left;
}
li a {
color: #eeeeee;
text-decoration: none;
padding: 15px 15px;
display: block;
}
li a:hover {
background-color: #111;
}
.curent {
background-color: #427b58;
}
pre, code {
color: #c7254e;
background-color: #f9f2f4;
width: fit-content;
margin: 0px;
border-radius: 2px;
}