-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (103 loc) · 2.24 KB
/
style.css
File metadata and controls
120 lines (103 loc) · 2.24 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
118
119
body {
background-color: #918fff;
}
.header-container {
margin: auto;
width: 50%;
border: 4px #918fff;
padding: 10px;
text-align: center;
background-color: #ffffff;
border-radius: 20px;
border-style: groove;
margin-bottom: 3%;
margin-top: 2%;
}
.baslik {
font-size: 250%;
font-style: normal;
font-weight: bolder;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.questions-holder {
background-color: #272747;
margin: auto;
width: 85%;
padding-top: 20px;
padding-bottom: 20px;
}
.question {
margin: auto;
margin-top: 20px;
margin-bottom: 20px;
display: flex;
width: 35%;
border: 4px #918fff;
padding: 10px;
background-color: #ffffff;
border-radius: 20px;
border-style: groove;
}
.question1 {
margin: auto;
margin-left: 0;
width: 250px;
display:flex;
background-color: #ffffff;
margin-right: 0;
font-size: 150%;
font-style: normal;
font-weight: bolder;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
padding: 20px;
}
.questioninput {
display: flex;
margin: auto;
margin-left: 0px;
background-color: #ffffff;
width: 200px;
height: auto;
padding: 10px;
}
.roledropdown {
height: 30px;
margin-top: auto;
margin-bottom: auto;
width: 220px;
}
.mainframe {
background-color: #918fff;
}
.buttons {
margin: 0 auto;
text-align: center;
width: 120px;
padding: 5px;
background-color: #918fff;
border: #000000;
border-radius: 10px;
}
.submit {
box-shadow:inset 0px -3px 7px 0px #272747;
background:linear-gradient(to bottom, #2dabf9 5%, #2378c2 100%);
background-color:#2dabf9;
border-radius:3px;
border:1px groove #0b0e07;
display:inline-block;
cursor:pointer;
color:#000000;
font-family:Arial;
font-size:15px;
padding:9px 23px;
text-decoration:none;
text-shadow:0px 1px 0px #263666;
}
.submit:hover {
background:linear-gradient(to bottom, #2378c2 5%, #2dabf9 100%);
background-color:#2378c2;
}
.submit:active {
position:relative;
top:3px;
}