-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcss_question.css
More file actions
53 lines (53 loc) · 1018 Bytes
/
css_question.css
File metadata and controls
53 lines (53 loc) · 1018 Bytes
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
@charset "UTF-8";
body{
background: no-repeat url(res/question_background.png) center center;
margin: 50px;
padding: 0;
background-size: cover;
background-attachment: fixed;
position: relative;
color: rgba(255, 255, 255, 0.7);
}
#title{
font-size: 50px;
font-family: sans-serif;
color: rgba(255, 255, 255, 0.9);
text-align: center;
}
.title_2{
font-size: 50px;
color: rgba(255, 255, 255, 0.8);
}
#directory{
margin-left: 30px;
}
#directory li{
margin: 30px;
font-size: 30px;
color: rgba(255, 255, 255, 0.8);
}
.directory_title{
font-size: 40px;
}
#answer{
margin: 30px;
font-size: 30px;
color: rgba(255, 255, 255, 0.8);
}
a{
-webkit-transition: color .5s;
transition: color .5s;
text-decoration:none;
}
a:link{
color:rgba(255, 255, 255, 0.5)
}
a:visited{
color:rgb(255, 255, 255)
}
a:hover{
color:rgb(255, 255, 255)
}
a:active{
color:rgb(255, 255, 255)
}